// Package servicefabric implements the Azure ARM Servicefabric service API version 6.2.0.9. // // Service Fabric REST Client APIs allows management of Service Fabric clusters, applications and services. package servicefabric // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. import ( "context" "github.com/Azure/go-autorest/autorest" "github.com/Azure/go-autorest/autorest/azure" "github.com/Azure/go-autorest/autorest/date" "github.com/Azure/go-autorest/autorest/validation" "github.com/Azure/go-autorest/tracing" "github.com/gofrs/uuid" "net/http" ) const ( // DefaultBaseURI is the default URI used for the service Servicefabric DefaultBaseURI = "http://localhost:19080" ) // BaseClient is the base client for Servicefabric. type BaseClient struct { autorest.Client BaseURI string } // New creates an instance of the BaseClient client. func New() BaseClient { return NewWithBaseURI(DefaultBaseURI) } // NewWithBaseURI creates an instance of the BaseClient client using a custom endpoint. Use this when interacting with // an Azure cloud that uses a non-standard base URI (sovereign clouds, Azure stack). func NewWithBaseURI(baseURI string) BaseClient { return BaseClient{ Client: autorest.NewClientWithUserAgent(UserAgent()), BaseURI: baseURI, } } // BackupPartition creates a backup of the stateful persisted partition's state. In case the partition is already being // periodically backed up, then by default the new backup is created at the same backup storage. One can also override // the same by specifying the backup storage details as part of the request body. Once the backup is initiated, its // progress can be tracked using the GetBackupProgress operation. // In case, the operation times out, specify a greater backup timeout value in the query parameter. // Parameters: // partitionID - the identity of the partition. // backupPartitionDescription - describes the parameters to backup the partition now. If not present, backup // operation uses default parameters from the backup policy current associated with this partition. // backupTimeout - specifies the maximum amount of time, in minutes, to wait for the backup operation to // complete. Post that, the operation completes with timeout error. However, in certain corner cases it could // be that though the operation returns back timeout, the backup actually goes through. In case of timeout // error, its recommended to invoke this operation again with a greater timeout value. The default value for // the same is 10 minutes. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) BackupPartition(ctx context.Context, partitionID uuid.UUID, backupPartitionDescription *BackupPartitionDescription, backupTimeout *int32, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.BackupPartition") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "BackupPartition", err.Error()) } req, err := client.BackupPartitionPreparer(ctx, partitionID, backupPartitionDescription, backupTimeout, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "BackupPartition", nil, "Failure preparing request") return } resp, err := client.BackupPartitionSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "BackupPartition", resp, "Failure sending request") return } result, err = client.BackupPartitionResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "BackupPartition", resp, "Failure responding to request") return } return } // BackupPartitionPreparer prepares the BackupPartition request. func (client BaseClient) BackupPartitionPreparer(ctx context.Context, partitionID uuid.UUID, backupPartitionDescription *BackupPartitionDescription, backupTimeout *int32, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "partitionId": partitionID, } const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if backupTimeout != nil { queryParameters["BackupTimeout"] = autorest.Encode("query", *backupTimeout) } else { queryParameters["BackupTimeout"] = autorest.Encode("query", 10) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Partitions/{partitionId}/$/Backup", pathParameters), autorest.WithQueryParameters(queryParameters)) if backupPartitionDescription != nil { preparer = autorest.DecoratePreparer(preparer, autorest.WithJSON(backupPartitionDescription)) } return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // BackupPartitionSender sends the BackupPartition request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) BackupPartitionSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // BackupPartitionResponder handles the response to the BackupPartition request. The method always // closes the http.Response Body. func (client BaseClient) BackupPartitionResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), autorest.ByClosing()) result.Response = resp return } // CancelOperation the following is a list of APIs that start fault operations that may be cancelled using // CancelOperation - // - StartDataLoss // - StartQuorumLoss // - StartPartitionRestart // - StartNodeTransition // // If force is false, then the specified user-induced operation will be gracefully stopped and cleaned up. If force is // true, the command will be aborted, and some internal state // may be left behind. Specifying force as true should be used with care. Calling this API with force set to true is // not allowed until this API has already // been called on the same test command with force set to false first, or unless the test command already has an // OperationState of OperationState.RollingBack. // Clarification: OperationState.RollingBack means that the system will/is be cleaning up internal system state caused // by executing the command. It will not restore data if the // test command was to cause data loss. For example, if you call StartDataLoss then call this API, the system will // only clean up internal state from running the command. // It will not restore the target partition's data, if the command progressed far enough to cause data loss. // // Important note: if this API is invoked with force==true, internal state may be left behind. // Parameters: // operationID - a GUID that identifies a call of this API. This is passed into the corresponding GetProgress // API // force - indicates whether to gracefully rollback and clean up internal system state modified by executing // the user-induced operation. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) CancelOperation(ctx context.Context, operationID uuid.UUID, force bool, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.CancelOperation") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "CancelOperation", err.Error()) } req, err := client.CancelOperationPreparer(ctx, operationID, force, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "CancelOperation", nil, "Failure preparing request") return } resp, err := client.CancelOperationSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "CancelOperation", resp, "Failure sending request") return } result, err = client.CancelOperationResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "CancelOperation", resp, "Failure responding to request") return } return } // CancelOperationPreparer prepares the CancelOperation request. func (client BaseClient) CancelOperationPreparer(ctx context.Context, operationID uuid.UUID, force bool, timeout *int64) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, "Force": autorest.Encode("query", force), "OperationId": autorest.Encode("query", operationID), } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/Faults/$/Cancel"), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // CancelOperationSender sends the CancelOperation request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) CancelOperationSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // CancelOperationResponder handles the response to the CancelOperation request. The method always // closes the http.Response Body. func (client BaseClient) CancelOperationResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // CancelRepairTask this API supports the Service Fabric platform; it is not meant to be used directly from your code. // Parameters: // repairTaskCancelDescription - describes the repair task to be cancelled. func (client BaseClient) CancelRepairTask(ctx context.Context, repairTaskCancelDescription RepairTaskCancelDescription) (result RepairTaskUpdateInfo, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.CancelRepairTask") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: repairTaskCancelDescription, Constraints: []validation.Constraint{{Target: "repairTaskCancelDescription.TaskID", Name: validation.Null, Rule: true, Chain: nil}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "CancelRepairTask", err.Error()) } req, err := client.CancelRepairTaskPreparer(ctx, repairTaskCancelDescription) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "CancelRepairTask", nil, "Failure preparing request") return } resp, err := client.CancelRepairTaskSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "CancelRepairTask", resp, "Failure sending request") return } result, err = client.CancelRepairTaskResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "CancelRepairTask", resp, "Failure responding to request") return } return } // CancelRepairTaskPreparer prepares the CancelRepairTask request. func (client BaseClient) CancelRepairTaskPreparer(ctx context.Context, repairTaskCancelDescription RepairTaskCancelDescription) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/$/CancelRepairTask"), autorest.WithJSON(repairTaskCancelDescription), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // CancelRepairTaskSender sends the CancelRepairTask request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) CancelRepairTaskSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // CancelRepairTaskResponder handles the response to the CancelRepairTask request. The method always // closes the http.Response Body. func (client BaseClient) CancelRepairTaskResponder(resp *http.Response) (result RepairTaskUpdateInfo, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // CommitImageStoreUploadSession when all file chunks have been uploaded, the upload session needs to be committed // explicitly to complete the upload. Image store preserves the upload session until the expiration time, which is 30 // minutes after the last chunk received. // Parameters: // sessionID - a GUID generated by the user for a file uploading. It identifies an image store upload session // which keeps track of all file chunks until it is committed. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) CommitImageStoreUploadSession(ctx context.Context, sessionID uuid.UUID, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.CommitImageStoreUploadSession") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "CommitImageStoreUploadSession", err.Error()) } req, err := client.CommitImageStoreUploadSessionPreparer(ctx, sessionID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "CommitImageStoreUploadSession", nil, "Failure preparing request") return } resp, err := client.CommitImageStoreUploadSessionSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "CommitImageStoreUploadSession", resp, "Failure sending request") return } result, err = client.CommitImageStoreUploadSessionResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "CommitImageStoreUploadSession", resp, "Failure responding to request") return } return } // CommitImageStoreUploadSessionPreparer prepares the CommitImageStoreUploadSession request. func (client BaseClient) CommitImageStoreUploadSessionPreparer(ctx context.Context, sessionID uuid.UUID, timeout *int64) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, "session-id": autorest.Encode("query", sessionID), } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/ImageStore/$/CommitUploadSession"), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // CommitImageStoreUploadSessionSender sends the CommitImageStoreUploadSession request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) CommitImageStoreUploadSessionSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // CommitImageStoreUploadSessionResponder handles the response to the CommitImageStoreUploadSession request. The method always // closes the http.Response Body. func (client BaseClient) CommitImageStoreUploadSessionResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // CopyImageStoreContent copies the image store content from the source image store relative path to the destination // image store relative path. // Parameters: // imageStoreCopyDescription - describes the copy description for the image store. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) CopyImageStoreContent(ctx context.Context, imageStoreCopyDescription ImageStoreCopyDescription, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.CopyImageStoreContent") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: imageStoreCopyDescription, Constraints: []validation.Constraint{{Target: "imageStoreCopyDescription.RemoteSource", Name: validation.Null, Rule: true, Chain: nil}, {Target: "imageStoreCopyDescription.RemoteDestination", Name: validation.Null, Rule: true, Chain: nil}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "CopyImageStoreContent", err.Error()) } req, err := client.CopyImageStoreContentPreparer(ctx, imageStoreCopyDescription, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "CopyImageStoreContent", nil, "Failure preparing request") return } resp, err := client.CopyImageStoreContentSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "CopyImageStoreContent", resp, "Failure sending request") return } result, err = client.CopyImageStoreContentResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "CopyImageStoreContent", resp, "Failure responding to request") return } return } // CopyImageStoreContentPreparer prepares the CopyImageStoreContent request. func (client BaseClient) CopyImageStoreContentPreparer(ctx context.Context, imageStoreCopyDescription ImageStoreCopyDescription, timeout *int64) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/ImageStore/$/Copy"), autorest.WithJSON(imageStoreCopyDescription), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // CopyImageStoreContentSender sends the CopyImageStoreContent request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) CopyImageStoreContentSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // CopyImageStoreContentResponder handles the response to the CopyImageStoreContent request. The method always // closes the http.Response Body. func (client BaseClient) CopyImageStoreContentResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // CreateApplication creates a Service Fabric application using the specified description. // Parameters: // applicationDescription - description for creating an application. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) CreateApplication(ctx context.Context, applicationDescription ApplicationDescription, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.CreateApplication") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: applicationDescription, Constraints: []validation.Constraint{{Target: "applicationDescription.Name", Name: validation.Null, Rule: true, Chain: nil}, {Target: "applicationDescription.TypeName", Name: validation.Null, Rule: true, Chain: nil}, {Target: "applicationDescription.TypeVersion", Name: validation.Null, Rule: true, Chain: nil}, {Target: "applicationDescription.ApplicationCapacity", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "applicationDescription.ApplicationCapacity.MinimumNodes", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "applicationDescription.ApplicationCapacity.MinimumNodes", Name: validation.InclusiveMinimum, Rule: int64(0), Chain: nil}}}, {Target: "applicationDescription.ApplicationCapacity.MaximumNodes", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "applicationDescription.ApplicationCapacity.MaximumNodes", Name: validation.InclusiveMinimum, Rule: int64(0), Chain: nil}}}, }}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "CreateApplication", err.Error()) } req, err := client.CreateApplicationPreparer(ctx, applicationDescription, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "CreateApplication", nil, "Failure preparing request") return } resp, err := client.CreateApplicationSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "CreateApplication", resp, "Failure sending request") return } result, err = client.CreateApplicationResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "CreateApplication", resp, "Failure responding to request") return } return } // CreateApplicationPreparer prepares the CreateApplication request. func (client BaseClient) CreateApplicationPreparer(ctx context.Context, applicationDescription ApplicationDescription, timeout *int64) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/Applications/$/Create"), autorest.WithJSON(applicationDescription), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // CreateApplicationSender sends the CreateApplication request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) CreateApplicationSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // CreateApplicationResponder handles the response to the CreateApplication request. The method always // closes the http.Response Body. func (client BaseClient) CreateApplicationResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated), autorest.ByClosing()) result.Response = resp return } // CreateBackupPolicy creates a backup policy which can be associated later with a Service Fabric application, service // or a partition for periodic backup. // Parameters: // backupPolicyDescription - describes the backup policy. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) CreateBackupPolicy(ctx context.Context, backupPolicyDescription BackupPolicyDescription, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.CreateBackupPolicy") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: backupPolicyDescription, Constraints: []validation.Constraint{{Target: "backupPolicyDescription.Name", Name: validation.Null, Rule: true, Chain: nil}, {Target: "backupPolicyDescription.AutoRestoreOnDataLoss", Name: validation.Null, Rule: true, Chain: nil}, {Target: "backupPolicyDescription.MaxIncrementalBackups", Name: validation.Null, Rule: true, Chain: []validation.Constraint{{Target: "backupPolicyDescription.MaxIncrementalBackups", Name: validation.InclusiveMaximum, Rule: int64(255), Chain: nil}, {Target: "backupPolicyDescription.MaxIncrementalBackups", Name: validation.InclusiveMinimum, Rule: int64(0), Chain: nil}, }}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "CreateBackupPolicy", err.Error()) } req, err := client.CreateBackupPolicyPreparer(ctx, backupPolicyDescription, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "CreateBackupPolicy", nil, "Failure preparing request") return } resp, err := client.CreateBackupPolicySender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "CreateBackupPolicy", resp, "Failure sending request") return } result, err = client.CreateBackupPolicyResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "CreateBackupPolicy", resp, "Failure responding to request") return } return } // CreateBackupPolicyPreparer prepares the CreateBackupPolicy request. func (client BaseClient) CreateBackupPolicyPreparer(ctx context.Context, backupPolicyDescription BackupPolicyDescription, timeout *int64) (*http.Request, error) { const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/BackupRestore/BackupPolicies/$/Create"), autorest.WithJSON(backupPolicyDescription), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // CreateBackupPolicySender sends the CreateBackupPolicy request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) CreateBackupPolicySender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // CreateBackupPolicyResponder handles the response to the CreateBackupPolicy request. The method always // closes the http.Response Body. func (client BaseClient) CreateBackupPolicyResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated), autorest.ByClosing()) result.Response = resp return } // CreateComposeDeployment compose is a file format that describes multi-container applications. This API allows // deploying container based applications defined in compose format in a Service Fabric cluster. Once the deployment is // created it's status can be tracked via `GetComposeDeploymentStatus` API. // Parameters: // createComposeDeploymentDescription - describes the compose deployment that needs to be created. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) CreateComposeDeployment(ctx context.Context, createComposeDeploymentDescription CreateComposeDeploymentDescription, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.CreateComposeDeployment") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: createComposeDeploymentDescription, Constraints: []validation.Constraint{{Target: "createComposeDeploymentDescription.DeploymentName", Name: validation.Null, Rule: true, Chain: nil}, {Target: "createComposeDeploymentDescription.ComposeFileContent", Name: validation.Null, Rule: true, Chain: nil}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "CreateComposeDeployment", err.Error()) } req, err := client.CreateComposeDeploymentPreparer(ctx, createComposeDeploymentDescription, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "CreateComposeDeployment", nil, "Failure preparing request") return } resp, err := client.CreateComposeDeploymentSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "CreateComposeDeployment", resp, "Failure sending request") return } result, err = client.CreateComposeDeploymentResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "CreateComposeDeployment", resp, "Failure responding to request") return } return } // CreateComposeDeploymentPreparer prepares the CreateComposeDeployment request. func (client BaseClient) CreateComposeDeploymentPreparer(ctx context.Context, createComposeDeploymentDescription CreateComposeDeploymentDescription, timeout *int64) (*http.Request, error) { const APIVersion = "6.0-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPut(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/ComposeDeployments/$/Create"), autorest.WithJSON(createComposeDeploymentDescription), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // CreateComposeDeploymentSender sends the CreateComposeDeployment request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) CreateComposeDeploymentSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // CreateComposeDeploymentResponder handles the response to the CreateComposeDeployment request. The method always // closes the http.Response Body. func (client BaseClient) CreateComposeDeploymentResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), autorest.ByClosing()) result.Response = resp return } // CreateName creates the specified Service Fabric name. // Parameters: // nameDescription - describes the Service Fabric name to be created. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) CreateName(ctx context.Context, nameDescription NameDescription, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.CreateName") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: nameDescription, Constraints: []validation.Constraint{{Target: "nameDescription.Name", Name: validation.Null, Rule: true, Chain: nil}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "CreateName", err.Error()) } req, err := client.CreateNamePreparer(ctx, nameDescription, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "CreateName", nil, "Failure preparing request") return } resp, err := client.CreateNameSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "CreateName", resp, "Failure sending request") return } result, err = client.CreateNameResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "CreateName", resp, "Failure responding to request") return } return } // CreateNamePreparer prepares the CreateName request. func (client BaseClient) CreateNamePreparer(ctx context.Context, nameDescription NameDescription, timeout *int64) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/Names/$/Create"), autorest.WithJSON(nameDescription), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // CreateNameSender sends the CreateName request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) CreateNameSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // CreateNameResponder handles the response to the CreateName request. The method always // closes the http.Response Body. func (client BaseClient) CreateNameResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusCreated), autorest.ByClosing()) result.Response = resp return } // CreateRepairTask for clusters that have the Repair Manager Service configured, // this API provides a way to create repair tasks that run automatically or manually. // For repair tasks that run automatically, an appropriate repair executor // must be running for each repair action to run automatically. // These are currently only available in specially-configured Azure Cloud Services. // // To create a manual repair task, provide the set of impacted node names and the // expected impact. When the state of the created repair task changes to approved, // you can safely perform repair actions on those nodes. // // This API supports the Service Fabric platform; it is not meant to be used directly from your code. // Parameters: // repairTask - describes the repair task to be created or updated. func (client BaseClient) CreateRepairTask(ctx context.Context, repairTask RepairTask) (result RepairTaskUpdateInfo, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.CreateRepairTask") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: repairTask, Constraints: []validation.Constraint{{Target: "repairTask.TaskID", Name: validation.Null, Rule: true, Chain: nil}, {Target: "repairTask.Action", Name: validation.Null, Rule: true, Chain: nil}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "CreateRepairTask", err.Error()) } req, err := client.CreateRepairTaskPreparer(ctx, repairTask) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "CreateRepairTask", nil, "Failure preparing request") return } resp, err := client.CreateRepairTaskSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "CreateRepairTask", resp, "Failure sending request") return } result, err = client.CreateRepairTaskResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "CreateRepairTask", resp, "Failure responding to request") return } return } // CreateRepairTaskPreparer prepares the CreateRepairTask request. func (client BaseClient) CreateRepairTaskPreparer(ctx context.Context, repairTask RepairTask) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/$/CreateRepairTask"), autorest.WithJSON(repairTask), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // CreateRepairTaskSender sends the CreateRepairTask request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) CreateRepairTaskSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // CreateRepairTaskResponder handles the response to the CreateRepairTask request. The method always // closes the http.Response Body. func (client BaseClient) CreateRepairTaskResponder(resp *http.Response) (result RepairTaskUpdateInfo, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // CreateService this api allows creating a new Service Fabric stateless or stateful service under a specified Service // Fabric application. The description for creating the service includes partitioning information and optional // properties for placement and load balancing. Some of the properties can later be modified using `UpdateService` API. // Parameters: // applicationID - the identity of the application. This is typically the full name of the application without // the 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the application name is "fabric:/myapp/app1", the application identity would be "myapp~app1" // in 6.0+ and "myapp/app1" in previous versions. // serviceDescription - the information necessary to create a service. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) CreateService(ctx context.Context, applicationID string, serviceDescription BasicServiceDescription, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.CreateService") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: serviceDescription, Constraints: []validation.Constraint{{Target: "serviceDescription.ServiceName", Name: validation.Null, Rule: true, Chain: nil}, {Target: "serviceDescription.ServiceTypeName", Name: validation.Null, Rule: true, Chain: nil}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "CreateService", err.Error()) } req, err := client.CreateServicePreparer(ctx, applicationID, serviceDescription, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "CreateService", nil, "Failure preparing request") return } resp, err := client.CreateServiceSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "CreateService", resp, "Failure sending request") return } result, err = client.CreateServiceResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "CreateService", resp, "Failure responding to request") return } return } // CreateServicePreparer prepares the CreateService request. func (client BaseClient) CreateServicePreparer(ctx context.Context, applicationID string, serviceDescription BasicServiceDescription, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationId": applicationID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Applications/{applicationId}/$/GetServices/$/Create", pathParameters), autorest.WithJSON(serviceDescription), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // CreateServiceSender sends the CreateService request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) CreateServiceSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // CreateServiceResponder handles the response to the CreateService request. The method always // closes the http.Response Body. func (client BaseClient) CreateServiceResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), autorest.ByClosing()) result.Response = resp return } // CreateServiceFromTemplate creates a Service Fabric service from the service template defined in the application // manifest. A service template contains the properties that will be same for the service instance of the same type. // The API allows overriding the properties that are usually different for different services of the same service type. // Parameters: // applicationID - the identity of the application. This is typically the full name of the application without // the 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the application name is "fabric:/myapp/app1", the application identity would be "myapp~app1" // in 6.0+ and "myapp/app1" in previous versions. // serviceFromTemplateDescription - describes the service that needs to be created from the template defined in // the application manifest. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) CreateServiceFromTemplate(ctx context.Context, applicationID string, serviceFromTemplateDescription ServiceFromTemplateDescription, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.CreateServiceFromTemplate") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: serviceFromTemplateDescription, Constraints: []validation.Constraint{{Target: "serviceFromTemplateDescription.ApplicationName", Name: validation.Null, Rule: true, Chain: nil}, {Target: "serviceFromTemplateDescription.ServiceName", Name: validation.Null, Rule: true, Chain: nil}, {Target: "serviceFromTemplateDescription.ServiceTypeName", Name: validation.Null, Rule: true, Chain: nil}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "CreateServiceFromTemplate", err.Error()) } req, err := client.CreateServiceFromTemplatePreparer(ctx, applicationID, serviceFromTemplateDescription, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "CreateServiceFromTemplate", nil, "Failure preparing request") return } resp, err := client.CreateServiceFromTemplateSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "CreateServiceFromTemplate", resp, "Failure sending request") return } result, err = client.CreateServiceFromTemplateResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "CreateServiceFromTemplate", resp, "Failure responding to request") return } return } // CreateServiceFromTemplatePreparer prepares the CreateServiceFromTemplate request. func (client BaseClient) CreateServiceFromTemplatePreparer(ctx context.Context, applicationID string, serviceFromTemplateDescription ServiceFromTemplateDescription, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationId": applicationID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Applications/{applicationId}/$/GetServices/$/CreateFromTemplate", pathParameters), autorest.WithJSON(serviceFromTemplateDescription), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // CreateServiceFromTemplateSender sends the CreateServiceFromTemplate request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) CreateServiceFromTemplateSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // CreateServiceFromTemplateResponder handles the response to the CreateServiceFromTemplate request. The method always // closes the http.Response Body. func (client BaseClient) CreateServiceFromTemplateResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), autorest.ByClosing()) result.Response = resp return } // DeleteApplication deletes an existing Service Fabric application. An application must be created before it can be // deleted. Deleting an application will delete all services that are part of that application. By default, Service // Fabric will try to close service replicas in a graceful manner and then delete the service. However, if a service is // having issues closing the replica gracefully, the delete operation may take a long time or get stuck. Use the // optional ForceRemove flag to skip the graceful close sequence and forcefully delete the application and all of the // its services. // Parameters: // applicationID - the identity of the application. This is typically the full name of the application without // the 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the application name is "fabric:/myapp/app1", the application identity would be "myapp~app1" // in 6.0+ and "myapp/app1" in previous versions. // forceRemove - remove a Service Fabric application or service forcefully without going through the graceful // shutdown sequence. This parameter can be used to forcefully delete an application or service for which // delete is timing out due to issues in the service code that prevents graceful close of replicas. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) DeleteApplication(ctx context.Context, applicationID string, forceRemove *bool, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.DeleteApplication") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "DeleteApplication", err.Error()) } req, err := client.DeleteApplicationPreparer(ctx, applicationID, forceRemove, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "DeleteApplication", nil, "Failure preparing request") return } resp, err := client.DeleteApplicationSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "DeleteApplication", resp, "Failure sending request") return } result, err = client.DeleteApplicationResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "DeleteApplication", resp, "Failure responding to request") return } return } // DeleteApplicationPreparer prepares the DeleteApplication request. func (client BaseClient) DeleteApplicationPreparer(ctx context.Context, applicationID string, forceRemove *bool, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationId": applicationID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if forceRemove != nil { queryParameters["ForceRemove"] = autorest.Encode("query", *forceRemove) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Applications/{applicationId}/$/Delete", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // DeleteApplicationSender sends the DeleteApplication request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) DeleteApplicationSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // DeleteApplicationResponder handles the response to the DeleteApplication request. The method always // closes the http.Response Body. func (client BaseClient) DeleteApplicationResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // DeleteBackupPolicy deletes an existing backup policy. A backup policy must be created before it can be deleted. A // currently active backup policy, associated with any Service Fabric application, service or partition, cannot be // deleted without first deleting the mapping. // Parameters: // backupPolicyName - the name of the backup policy. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) DeleteBackupPolicy(ctx context.Context, backupPolicyName string, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.DeleteBackupPolicy") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "DeleteBackupPolicy", err.Error()) } req, err := client.DeleteBackupPolicyPreparer(ctx, backupPolicyName, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "DeleteBackupPolicy", nil, "Failure preparing request") return } resp, err := client.DeleteBackupPolicySender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "DeleteBackupPolicy", resp, "Failure sending request") return } result, err = client.DeleteBackupPolicyResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "DeleteBackupPolicy", resp, "Failure responding to request") return } return } // DeleteBackupPolicyPreparer prepares the DeleteBackupPolicy request. func (client BaseClient) DeleteBackupPolicyPreparer(ctx context.Context, backupPolicyName string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "backupPolicyName": autorest.Encode("path", backupPolicyName), } const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/BackupRestore/BackupPolicies/{backupPolicyName}/$/Delete", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // DeleteBackupPolicySender sends the DeleteBackupPolicy request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) DeleteBackupPolicySender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // DeleteBackupPolicyResponder handles the response to the DeleteBackupPolicy request. The method always // closes the http.Response Body. func (client BaseClient) DeleteBackupPolicyResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // DeleteImageStoreContent deletes existing image store content being found within the given image store relative path. // This can be used to delete uploaded application packages once they are provisioned. // Parameters: // contentPath - relative path to file or folder in the image store from its root. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) DeleteImageStoreContent(ctx context.Context, contentPath string, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.DeleteImageStoreContent") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "DeleteImageStoreContent", err.Error()) } req, err := client.DeleteImageStoreContentPreparer(ctx, contentPath, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "DeleteImageStoreContent", nil, "Failure preparing request") return } resp, err := client.DeleteImageStoreContentSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "DeleteImageStoreContent", resp, "Failure sending request") return } result, err = client.DeleteImageStoreContentResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "DeleteImageStoreContent", resp, "Failure responding to request") return } return } // DeleteImageStoreContentPreparer prepares the DeleteImageStoreContent request. func (client BaseClient) DeleteImageStoreContentPreparer(ctx context.Context, contentPath string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "contentPath": autorest.Encode("path", contentPath), } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsDelete(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/ImageStore/{contentPath}", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // DeleteImageStoreContentSender sends the DeleteImageStoreContent request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) DeleteImageStoreContentSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // DeleteImageStoreContentResponder handles the response to the DeleteImageStoreContent request. The method always // closes the http.Response Body. func (client BaseClient) DeleteImageStoreContentResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // DeleteImageStoreUploadSession the DELETE request will cause the existing upload session to expire and remove any // previously uploaded file chunks. // Parameters: // sessionID - a GUID generated by the user for a file uploading. It identifies an image store upload session // which keeps track of all file chunks until it is committed. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) DeleteImageStoreUploadSession(ctx context.Context, sessionID uuid.UUID, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.DeleteImageStoreUploadSession") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "DeleteImageStoreUploadSession", err.Error()) } req, err := client.DeleteImageStoreUploadSessionPreparer(ctx, sessionID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "DeleteImageStoreUploadSession", nil, "Failure preparing request") return } resp, err := client.DeleteImageStoreUploadSessionSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "DeleteImageStoreUploadSession", resp, "Failure sending request") return } result, err = client.DeleteImageStoreUploadSessionResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "DeleteImageStoreUploadSession", resp, "Failure responding to request") return } return } // DeleteImageStoreUploadSessionPreparer prepares the DeleteImageStoreUploadSession request. func (client BaseClient) DeleteImageStoreUploadSessionPreparer(ctx context.Context, sessionID uuid.UUID, timeout *int64) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, "session-id": autorest.Encode("query", sessionID), } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsDelete(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/ImageStore/$/DeleteUploadSession"), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // DeleteImageStoreUploadSessionSender sends the DeleteImageStoreUploadSession request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) DeleteImageStoreUploadSessionSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // DeleteImageStoreUploadSessionResponder handles the response to the DeleteImageStoreUploadSession request. The method always // closes the http.Response Body. func (client BaseClient) DeleteImageStoreUploadSessionResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // DeleteName deletes the specified Service Fabric name. A name must be created before it can be deleted. Deleting a // name with child properties will fail. // Parameters: // nameID - the Service Fabric name, without the 'fabric:' URI scheme. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) DeleteName(ctx context.Context, nameID string, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.DeleteName") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "DeleteName", err.Error()) } req, err := client.DeleteNamePreparer(ctx, nameID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "DeleteName", nil, "Failure preparing request") return } resp, err := client.DeleteNameSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "DeleteName", resp, "Failure sending request") return } result, err = client.DeleteNameResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "DeleteName", resp, "Failure responding to request") return } return } // DeleteNamePreparer prepares the DeleteName request. func (client BaseClient) DeleteNamePreparer(ctx context.Context, nameID string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "nameId": nameID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsDelete(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Names/{nameId}", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // DeleteNameSender sends the DeleteName request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) DeleteNameSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // DeleteNameResponder handles the response to the DeleteName request. The method always // closes the http.Response Body. func (client BaseClient) DeleteNameResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // DeleteProperty deletes the specified Service Fabric property under a given name. A property must be created before // it can be deleted. // Parameters: // nameID - the Service Fabric name, without the 'fabric:' URI scheme. // propertyName - specifies the name of the property to get. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) DeleteProperty(ctx context.Context, nameID string, propertyName string, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.DeleteProperty") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "DeleteProperty", err.Error()) } req, err := client.DeletePropertyPreparer(ctx, nameID, propertyName, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "DeleteProperty", nil, "Failure preparing request") return } resp, err := client.DeletePropertySender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "DeleteProperty", resp, "Failure sending request") return } result, err = client.DeletePropertyResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "DeleteProperty", resp, "Failure responding to request") return } return } // DeletePropertyPreparer prepares the DeleteProperty request. func (client BaseClient) DeletePropertyPreparer(ctx context.Context, nameID string, propertyName string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "nameId": nameID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, "PropertyName": autorest.Encode("query", propertyName), } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsDelete(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Names/{nameId}/$/GetProperty", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // DeletePropertySender sends the DeleteProperty request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) DeletePropertySender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // DeletePropertyResponder handles the response to the DeleteProperty request. The method always // closes the http.Response Body. func (client BaseClient) DeletePropertyResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // DeleteRepairTask this API supports the Service Fabric platform; it is not meant to be used directly from your code. // Parameters: // repairTaskDeleteDescription - describes the repair task to be deleted. func (client BaseClient) DeleteRepairTask(ctx context.Context, repairTaskDeleteDescription RepairTaskDeleteDescription) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.DeleteRepairTask") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: repairTaskDeleteDescription, Constraints: []validation.Constraint{{Target: "repairTaskDeleteDescription.TaskID", Name: validation.Null, Rule: true, Chain: nil}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "DeleteRepairTask", err.Error()) } req, err := client.DeleteRepairTaskPreparer(ctx, repairTaskDeleteDescription) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "DeleteRepairTask", nil, "Failure preparing request") return } resp, err := client.DeleteRepairTaskSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "DeleteRepairTask", resp, "Failure sending request") return } result, err = client.DeleteRepairTaskResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "DeleteRepairTask", resp, "Failure responding to request") return } return } // DeleteRepairTaskPreparer prepares the DeleteRepairTask request. func (client BaseClient) DeleteRepairTaskPreparer(ctx context.Context, repairTaskDeleteDescription RepairTaskDeleteDescription) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/$/DeleteRepairTask"), autorest.WithJSON(repairTaskDeleteDescription), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // DeleteRepairTaskSender sends the DeleteRepairTask request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) DeleteRepairTaskSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // DeleteRepairTaskResponder handles the response to the DeleteRepairTask request. The method always // closes the http.Response Body. func (client BaseClient) DeleteRepairTaskResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // DeleteService deletes an existing Service Fabric service. A service must be created before it can be deleted. By // default, Service Fabric will try to close service replicas in a graceful manner and then delete the service. // However, if the service is having issues closing the replica gracefully, the delete operation may take a long time // or get stuck. Use the optional ForceRemove flag to skip the graceful close sequence and forcefully delete the // service. // Parameters: // serviceID - the identity of the service. This is typically the full name of the service without the // 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the service name is "fabric:/myapp/app1/svc1", the service identity would be // "myapp~app1~svc1" in 6.0+ and "myapp/app1/svc1" in previous versions. // forceRemove - remove a Service Fabric application or service forcefully without going through the graceful // shutdown sequence. This parameter can be used to forcefully delete an application or service for which // delete is timing out due to issues in the service code that prevents graceful close of replicas. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) DeleteService(ctx context.Context, serviceID string, forceRemove *bool, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.DeleteService") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "DeleteService", err.Error()) } req, err := client.DeleteServicePreparer(ctx, serviceID, forceRemove, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "DeleteService", nil, "Failure preparing request") return } resp, err := client.DeleteServiceSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "DeleteService", resp, "Failure sending request") return } result, err = client.DeleteServiceResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "DeleteService", resp, "Failure responding to request") return } return } // DeleteServicePreparer prepares the DeleteService request. func (client BaseClient) DeleteServicePreparer(ctx context.Context, serviceID string, forceRemove *bool, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "serviceId": serviceID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if forceRemove != nil { queryParameters["ForceRemove"] = autorest.Encode("query", *forceRemove) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Services/{serviceId}/$/Delete", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // DeleteServiceSender sends the DeleteService request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) DeleteServiceSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // DeleteServiceResponder handles the response to the DeleteService request. The method always // closes the http.Response Body. func (client BaseClient) DeleteServiceResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // DeployServicePackageToNode this API provides a way to download code packages including the container images on a // specific node outside of the normal application deployment and upgrade path. This is useful for the large code // packages and container images to be present on the node before the actual application deployment and upgrade, thus // significantly reducing the total time required for the deployment or upgrade. // Parameters: // nodeName - the name of the node. // deployServicePackageToNodeDescription - describes information for deploying a service package to a Service // Fabric node. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) DeployServicePackageToNode(ctx context.Context, nodeName string, deployServicePackageToNodeDescription DeployServicePackageToNodeDescription, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.DeployServicePackageToNode") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: deployServicePackageToNodeDescription, Constraints: []validation.Constraint{{Target: "deployServicePackageToNodeDescription.ServiceManifestName", Name: validation.Null, Rule: true, Chain: nil}, {Target: "deployServicePackageToNodeDescription.ApplicationTypeName", Name: validation.Null, Rule: true, Chain: nil}, {Target: "deployServicePackageToNodeDescription.ApplicationTypeVersion", Name: validation.Null, Rule: true, Chain: nil}, {Target: "deployServicePackageToNodeDescription.NodeName", Name: validation.Null, Rule: true, Chain: nil}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "DeployServicePackageToNode", err.Error()) } req, err := client.DeployServicePackageToNodePreparer(ctx, nodeName, deployServicePackageToNodeDescription, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "DeployServicePackageToNode", nil, "Failure preparing request") return } resp, err := client.DeployServicePackageToNodeSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "DeployServicePackageToNode", resp, "Failure sending request") return } result, err = client.DeployServicePackageToNodeResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "DeployServicePackageToNode", resp, "Failure responding to request") return } return } // DeployServicePackageToNodePreparer prepares the DeployServicePackageToNode request. func (client BaseClient) DeployServicePackageToNodePreparer(ctx context.Context, nodeName string, deployServicePackageToNodeDescription DeployServicePackageToNodeDescription, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "nodeName": autorest.Encode("path", nodeName), } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Nodes/{nodeName}/$/DeployServicePackage", pathParameters), autorest.WithJSON(deployServicePackageToNodeDescription), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // DeployServicePackageToNodeSender sends the DeployServicePackageToNode request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) DeployServicePackageToNodeSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // DeployServicePackageToNodeResponder handles the response to the DeployServicePackageToNode request. The method always // closes the http.Response Body. func (client BaseClient) DeployServicePackageToNodeResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // DisableApplicationBackup disables periodic backup of Service Fabric application which was previously enabled. // Parameters: // applicationID - the identity of the application. This is typically the full name of the application without // the 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the application name is "fabric:/myapp/app1", the application identity would be "myapp~app1" // in 6.0+ and "myapp/app1" in previous versions. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) DisableApplicationBackup(ctx context.Context, applicationID string, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.DisableApplicationBackup") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "DisableApplicationBackup", err.Error()) } req, err := client.DisableApplicationBackupPreparer(ctx, applicationID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "DisableApplicationBackup", nil, "Failure preparing request") return } resp, err := client.DisableApplicationBackupSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "DisableApplicationBackup", resp, "Failure sending request") return } result, err = client.DisableApplicationBackupResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "DisableApplicationBackup", resp, "Failure responding to request") return } return } // DisableApplicationBackupPreparer prepares the DisableApplicationBackup request. func (client BaseClient) DisableApplicationBackupPreparer(ctx context.Context, applicationID string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationId": applicationID, } const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Applications/{applicationId}/$/DisableBackup", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // DisableApplicationBackupSender sends the DisableApplicationBackup request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) DisableApplicationBackupSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // DisableApplicationBackupResponder handles the response to the DisableApplicationBackup request. The method always // closes the http.Response Body. func (client BaseClient) DisableApplicationBackupResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), autorest.ByClosing()) result.Response = resp return } // DisableNode deactivate a Service Fabric cluster node with the specified deactivation intent. Once the deactivation // is in progress, the deactivation intent can be increased, but not decreased (for example, a node which is was // deactivated with the Pause intent can be deactivated further with Restart, but not the other way around. Nodes may // be reactivated using the Activate a node operation any time after they are deactivated. If the deactivation is not // complete this will cancel the deactivation. A node which goes down and comes back up while deactivated will still // need to be reactivated before services will be placed on that node. // Parameters: // nodeName - the name of the node. // deactivationIntentDescription - describes the intent or reason for deactivating the node. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) DisableNode(ctx context.Context, nodeName string, deactivationIntentDescription DeactivationIntentDescription, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.DisableNode") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "DisableNode", err.Error()) } req, err := client.DisableNodePreparer(ctx, nodeName, deactivationIntentDescription, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "DisableNode", nil, "Failure preparing request") return } resp, err := client.DisableNodeSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "DisableNode", resp, "Failure sending request") return } result, err = client.DisableNodeResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "DisableNode", resp, "Failure responding to request") return } return } // DisableNodePreparer prepares the DisableNode request. func (client BaseClient) DisableNodePreparer(ctx context.Context, nodeName string, deactivationIntentDescription DeactivationIntentDescription, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "nodeName": autorest.Encode("path", nodeName), } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Nodes/{nodeName}/$/Deactivate", pathParameters), autorest.WithJSON(deactivationIntentDescription), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // DisableNodeSender sends the DisableNode request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) DisableNodeSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // DisableNodeResponder handles the response to the DisableNode request. The method always // closes the http.Response Body. func (client BaseClient) DisableNodeResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // DisablePartitionBackup disables periodic backup of partition which was previously enabled. Backup must be explicitly // enabled before it can be disabled. // In case the backup is enabled for the Service Fabric application or service, which this partition is part of, this // partition would continue to be periodically backed up as per the policy mapped at the higher level entity. // Parameters: // partitionID - the identity of the partition. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) DisablePartitionBackup(ctx context.Context, partitionID uuid.UUID, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.DisablePartitionBackup") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "DisablePartitionBackup", err.Error()) } req, err := client.DisablePartitionBackupPreparer(ctx, partitionID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "DisablePartitionBackup", nil, "Failure preparing request") return } resp, err := client.DisablePartitionBackupSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "DisablePartitionBackup", resp, "Failure sending request") return } result, err = client.DisablePartitionBackupResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "DisablePartitionBackup", resp, "Failure responding to request") return } return } // DisablePartitionBackupPreparer prepares the DisablePartitionBackup request. func (client BaseClient) DisablePartitionBackupPreparer(ctx context.Context, partitionID uuid.UUID, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "partitionId": partitionID, } const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Partitions/{partitionId}/$/DisableBackup", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // DisablePartitionBackupSender sends the DisablePartitionBackup request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) DisablePartitionBackupSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // DisablePartitionBackupResponder handles the response to the DisablePartitionBackup request. The method always // closes the http.Response Body. func (client BaseClient) DisablePartitionBackupResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), autorest.ByClosing()) result.Response = resp return } // DisableServiceBackup disables periodic backup of Service Fabric service which was previously enabled. Backup must be // explicitly enabled before it can be disabled. // In case the backup is enabled for the Service Fabric application, which this service is part of, this service would // continue to be periodically backed up as per the policy mapped at the application level. // Parameters: // serviceID - the identity of the service. This is typically the full name of the service without the // 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the service name is "fabric:/myapp/app1/svc1", the service identity would be // "myapp~app1~svc1" in 6.0+ and "myapp/app1/svc1" in previous versions. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) DisableServiceBackup(ctx context.Context, serviceID string, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.DisableServiceBackup") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "DisableServiceBackup", err.Error()) } req, err := client.DisableServiceBackupPreparer(ctx, serviceID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "DisableServiceBackup", nil, "Failure preparing request") return } resp, err := client.DisableServiceBackupSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "DisableServiceBackup", resp, "Failure sending request") return } result, err = client.DisableServiceBackupResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "DisableServiceBackup", resp, "Failure responding to request") return } return } // DisableServiceBackupPreparer prepares the DisableServiceBackup request. func (client BaseClient) DisableServiceBackupPreparer(ctx context.Context, serviceID string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "serviceId": serviceID, } const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Services/{serviceId}/$/DisableBackup", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // DisableServiceBackupSender sends the DisableServiceBackup request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) DisableServiceBackupSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // DisableServiceBackupResponder handles the response to the DisableServiceBackup request. The method always // closes the http.Response Body. func (client BaseClient) DisableServiceBackupResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), autorest.ByClosing()) result.Response = resp return } // EnableApplicationBackup enables periodic backup of stateful partitions which are part of this Service Fabric // application. Each partition is backed up individually as per the specified backup policy description. // Note only C# based Reliable Actor and Reliable Stateful services are currently supported for periodic backup. // Parameters: // applicationID - the identity of the application. This is typically the full name of the application without // the 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the application name is "fabric:/myapp/app1", the application identity would be "myapp~app1" // in 6.0+ and "myapp/app1" in previous versions. // enableBackupDescription - specifies the parameters for enabling backup. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) EnableApplicationBackup(ctx context.Context, applicationID string, enableBackupDescription EnableBackupDescription, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.EnableApplicationBackup") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: enableBackupDescription, Constraints: []validation.Constraint{{Target: "enableBackupDescription.BackupPolicyName", Name: validation.Null, Rule: true, Chain: nil}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "EnableApplicationBackup", err.Error()) } req, err := client.EnableApplicationBackupPreparer(ctx, applicationID, enableBackupDescription, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "EnableApplicationBackup", nil, "Failure preparing request") return } resp, err := client.EnableApplicationBackupSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "EnableApplicationBackup", resp, "Failure sending request") return } result, err = client.EnableApplicationBackupResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "EnableApplicationBackup", resp, "Failure responding to request") return } return } // EnableApplicationBackupPreparer prepares the EnableApplicationBackup request. func (client BaseClient) EnableApplicationBackupPreparer(ctx context.Context, applicationID string, enableBackupDescription EnableBackupDescription, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationId": applicationID, } const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Applications/{applicationId}/$/EnableBackup", pathParameters), autorest.WithJSON(enableBackupDescription), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // EnableApplicationBackupSender sends the EnableApplicationBackup request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) EnableApplicationBackupSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // EnableApplicationBackupResponder handles the response to the EnableApplicationBackup request. The method always // closes the http.Response Body. func (client BaseClient) EnableApplicationBackupResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), autorest.ByClosing()) result.Response = resp return } // EnableNode activates a Service Fabric cluster node which is currently deactivated. Once activated, the node will // again become a viable target for placing new replicas, and any deactivated replicas remaining on the node will be // reactivated. // Parameters: // nodeName - the name of the node. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) EnableNode(ctx context.Context, nodeName string, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.EnableNode") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "EnableNode", err.Error()) } req, err := client.EnableNodePreparer(ctx, nodeName, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "EnableNode", nil, "Failure preparing request") return } resp, err := client.EnableNodeSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "EnableNode", resp, "Failure sending request") return } result, err = client.EnableNodeResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "EnableNode", resp, "Failure responding to request") return } return } // EnableNodePreparer prepares the EnableNode request. func (client BaseClient) EnableNodePreparer(ctx context.Context, nodeName string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "nodeName": autorest.Encode("path", nodeName), } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Nodes/{nodeName}/$/Activate", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // EnableNodeSender sends the EnableNode request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) EnableNodeSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // EnableNodeResponder handles the response to the EnableNode request. The method always // closes the http.Response Body. func (client BaseClient) EnableNodeResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // EnablePartitionBackup enables periodic backup of stateful persisted partition. Each partition is backed up as per // the specified backup policy description. In case the application or service, which is partition is part of, is // already enabled for backup then this operation would override the policy being used to take the periodic backup of // this partition. // Note only C# based Reliable Actor and Reliable Stateful services are currently supported for periodic backup. // Parameters: // partitionID - the identity of the partition. // enableBackupDescription - specifies the parameters for enabling backup. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) EnablePartitionBackup(ctx context.Context, partitionID uuid.UUID, enableBackupDescription EnableBackupDescription, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.EnablePartitionBackup") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: enableBackupDescription, Constraints: []validation.Constraint{{Target: "enableBackupDescription.BackupPolicyName", Name: validation.Null, Rule: true, Chain: nil}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "EnablePartitionBackup", err.Error()) } req, err := client.EnablePartitionBackupPreparer(ctx, partitionID, enableBackupDescription, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "EnablePartitionBackup", nil, "Failure preparing request") return } resp, err := client.EnablePartitionBackupSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "EnablePartitionBackup", resp, "Failure sending request") return } result, err = client.EnablePartitionBackupResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "EnablePartitionBackup", resp, "Failure responding to request") return } return } // EnablePartitionBackupPreparer prepares the EnablePartitionBackup request. func (client BaseClient) EnablePartitionBackupPreparer(ctx context.Context, partitionID uuid.UUID, enableBackupDescription EnableBackupDescription, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "partitionId": partitionID, } const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Partitions/{partitionId}/$/EnableBackup", pathParameters), autorest.WithJSON(enableBackupDescription), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // EnablePartitionBackupSender sends the EnablePartitionBackup request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) EnablePartitionBackupSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // EnablePartitionBackupResponder handles the response to the EnablePartitionBackup request. The method always // closes the http.Response Body. func (client BaseClient) EnablePartitionBackupResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), autorest.ByClosing()) result.Response = resp return } // EnableServiceBackup enables periodic backup of stateful partitions which are part of this Service Fabric service. // Each partition is backed up individually as per the specified backup policy description. In case the application, // which the service is part of, is already enabled for backup then this operation would override the policy being used // to take the periodic backup for this service and its partitions (unless explicitly overridden at the partition // level). // Note only C# based Reliable Actor and Reliable Stateful services are currently supported for periodic backup. // Parameters: // serviceID - the identity of the service. This is typically the full name of the service without the // 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the service name is "fabric:/myapp/app1/svc1", the service identity would be // "myapp~app1~svc1" in 6.0+ and "myapp/app1/svc1" in previous versions. // enableBackupDescription - specifies the parameters for enabling backup. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) EnableServiceBackup(ctx context.Context, serviceID string, enableBackupDescription EnableBackupDescription, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.EnableServiceBackup") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: enableBackupDescription, Constraints: []validation.Constraint{{Target: "enableBackupDescription.BackupPolicyName", Name: validation.Null, Rule: true, Chain: nil}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "EnableServiceBackup", err.Error()) } req, err := client.EnableServiceBackupPreparer(ctx, serviceID, enableBackupDescription, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "EnableServiceBackup", nil, "Failure preparing request") return } resp, err := client.EnableServiceBackupSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "EnableServiceBackup", resp, "Failure sending request") return } result, err = client.EnableServiceBackupResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "EnableServiceBackup", resp, "Failure responding to request") return } return } // EnableServiceBackupPreparer prepares the EnableServiceBackup request. func (client BaseClient) EnableServiceBackupPreparer(ctx context.Context, serviceID string, enableBackupDescription EnableBackupDescription, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "serviceId": serviceID, } const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Services/{serviceId}/$/EnableBackup", pathParameters), autorest.WithJSON(enableBackupDescription), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // EnableServiceBackupSender sends the EnableServiceBackup request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) EnableServiceBackupSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // EnableServiceBackupResponder handles the response to the EnableServiceBackup request. The method always // closes the http.Response Body. func (client BaseClient) EnableServiceBackupResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), autorest.ByClosing()) result.Response = resp return } // ForceApproveRepairTask this API supports the Service Fabric platform; it is not meant to be used directly from your // code. // Parameters: // repairTaskApproveDescription - describes the repair task to be approved. func (client BaseClient) ForceApproveRepairTask(ctx context.Context, repairTaskApproveDescription RepairTaskApproveDescription) (result RepairTaskUpdateInfo, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.ForceApproveRepairTask") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: repairTaskApproveDescription, Constraints: []validation.Constraint{{Target: "repairTaskApproveDescription.TaskID", Name: validation.Null, Rule: true, Chain: nil}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "ForceApproveRepairTask", err.Error()) } req, err := client.ForceApproveRepairTaskPreparer(ctx, repairTaskApproveDescription) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ForceApproveRepairTask", nil, "Failure preparing request") return } resp, err := client.ForceApproveRepairTaskSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ForceApproveRepairTask", resp, "Failure sending request") return } result, err = client.ForceApproveRepairTaskResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ForceApproveRepairTask", resp, "Failure responding to request") return } return } // ForceApproveRepairTaskPreparer prepares the ForceApproveRepairTask request. func (client BaseClient) ForceApproveRepairTaskPreparer(ctx context.Context, repairTaskApproveDescription RepairTaskApproveDescription) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/$/ForceApproveRepairTask"), autorest.WithJSON(repairTaskApproveDescription), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ForceApproveRepairTaskSender sends the ForceApproveRepairTask request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) ForceApproveRepairTaskSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // ForceApproveRepairTaskResponder handles the response to the ForceApproveRepairTask request. The method always // closes the http.Response Body. func (client BaseClient) ForceApproveRepairTaskResponder(resp *http.Response) (result RepairTaskUpdateInfo, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetAadMetadata gets the Azure Active Directory metadata used for secured connection to cluster. // This API is not supposed to be called separately. It provides information needed to set up an Azure Active Directory // secured connection with a Service Fabric cluster. // Parameters: // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetAadMetadata(ctx context.Context, timeout *int64) (result AadMetadataObject, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetAadMetadata") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetAadMetadata", err.Error()) } req, err := client.GetAadMetadataPreparer(ctx, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetAadMetadata", nil, "Failure preparing request") return } resp, err := client.GetAadMetadataSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetAadMetadata", resp, "Failure sending request") return } result, err = client.GetAadMetadataResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetAadMetadata", resp, "Failure responding to request") return } return } // GetAadMetadataPreparer prepares the GetAadMetadata request. func (client BaseClient) GetAadMetadataPreparer(ctx context.Context, timeout *int64) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/$/GetAadMetadata"), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetAadMetadataSender sends the GetAadMetadata request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetAadMetadataSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetAadMetadataResponder handles the response to the GetAadMetadata request. The method always // closes the http.Response Body. func (client BaseClient) GetAadMetadataResponder(resp *http.Response) (result AadMetadataObject, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetAllEntitiesBackedUpByPolicy returns a list of Service Fabric application, service or partition which are // associated with this backup policy. // Parameters: // backupPolicyName - the name of the backup policy. // continuationToken - the continuation token parameter is used to obtain next set of results. A continuation // token with a non empty value is included in the response of the API when the results from the system do not // fit in a single response. When this value is passed to the next API call, the API returns next set of // results. If there are no further results then the continuation token does not contain a value. The value of // this parameter should not be URL encoded. // maxResults - the maximum number of results to be returned as part of the paged queries. This parameter // defines the upper bound on the number of results returned. The results returned can be less than the // specified maximum results if they do not fit in the message as per the max message size restrictions defined // in the configuration. If this parameter is zero or not specified, the paged queries includes as many results // as possible that fit in the return message. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetAllEntitiesBackedUpByPolicy(ctx context.Context, backupPolicyName string, continuationToken string, maxResults *int64, timeout *int64) (result PagedBackupEntityList, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetAllEntitiesBackedUpByPolicy") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: maxResults, Constraints: []validation.Constraint{{Target: "maxResults", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "maxResults", Name: validation.InclusiveMinimum, Rule: int64(0), Chain: nil}}}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetAllEntitiesBackedUpByPolicy", err.Error()) } req, err := client.GetAllEntitiesBackedUpByPolicyPreparer(ctx, backupPolicyName, continuationToken, maxResults, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetAllEntitiesBackedUpByPolicy", nil, "Failure preparing request") return } resp, err := client.GetAllEntitiesBackedUpByPolicySender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetAllEntitiesBackedUpByPolicy", resp, "Failure sending request") return } result, err = client.GetAllEntitiesBackedUpByPolicyResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetAllEntitiesBackedUpByPolicy", resp, "Failure responding to request") return } return } // GetAllEntitiesBackedUpByPolicyPreparer prepares the GetAllEntitiesBackedUpByPolicy request. func (client BaseClient) GetAllEntitiesBackedUpByPolicyPreparer(ctx context.Context, backupPolicyName string, continuationToken string, maxResults *int64, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "backupPolicyName": autorest.Encode("path", backupPolicyName), } const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if len(continuationToken) > 0 { queryParameters["ContinuationToken"] = continuationToken } if maxResults != nil { queryParameters["MaxResults"] = autorest.Encode("query", *maxResults) } else { queryParameters["MaxResults"] = autorest.Encode("query", 0) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/BackupRestore/BackupPolicies/{backupPolicyName}/$/GetBackupEnabledEntities", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetAllEntitiesBackedUpByPolicySender sends the GetAllEntitiesBackedUpByPolicy request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetAllEntitiesBackedUpByPolicySender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetAllEntitiesBackedUpByPolicyResponder handles the response to the GetAllEntitiesBackedUpByPolicy request. The method always // closes the http.Response Body. func (client BaseClient) GetAllEntitiesBackedUpByPolicyResponder(resp *http.Response) (result PagedBackupEntityList, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetApplicationBackupConfigurationInfo gets the Service Fabric backup configuration information for the application // and the services and partitions under this application. // Parameters: // applicationID - the identity of the application. This is typically the full name of the application without // the 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the application name is "fabric:/myapp/app1", the application identity would be "myapp~app1" // in 6.0+ and "myapp/app1" in previous versions. // continuationToken - the continuation token parameter is used to obtain next set of results. A continuation // token with a non empty value is included in the response of the API when the results from the system do not // fit in a single response. When this value is passed to the next API call, the API returns next set of // results. If there are no further results then the continuation token does not contain a value. The value of // this parameter should not be URL encoded. // maxResults - the maximum number of results to be returned as part of the paged queries. This parameter // defines the upper bound on the number of results returned. The results returned can be less than the // specified maximum results if they do not fit in the message as per the max message size restrictions defined // in the configuration. If this parameter is zero or not specified, the paged queries includes as many results // as possible that fit in the return message. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetApplicationBackupConfigurationInfo(ctx context.Context, applicationID string, continuationToken string, maxResults *int64, timeout *int64) (result PagedBackupConfigurationInfoList, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetApplicationBackupConfigurationInfo") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: maxResults, Constraints: []validation.Constraint{{Target: "maxResults", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "maxResults", Name: validation.InclusiveMinimum, Rule: int64(0), Chain: nil}}}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetApplicationBackupConfigurationInfo", err.Error()) } req, err := client.GetApplicationBackupConfigurationInfoPreparer(ctx, applicationID, continuationToken, maxResults, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationBackupConfigurationInfo", nil, "Failure preparing request") return } resp, err := client.GetApplicationBackupConfigurationInfoSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationBackupConfigurationInfo", resp, "Failure sending request") return } result, err = client.GetApplicationBackupConfigurationInfoResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationBackupConfigurationInfo", resp, "Failure responding to request") return } return } // GetApplicationBackupConfigurationInfoPreparer prepares the GetApplicationBackupConfigurationInfo request. func (client BaseClient) GetApplicationBackupConfigurationInfoPreparer(ctx context.Context, applicationID string, continuationToken string, maxResults *int64, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationId": applicationID, } const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if len(continuationToken) > 0 { queryParameters["ContinuationToken"] = continuationToken } if maxResults != nil { queryParameters["MaxResults"] = autorest.Encode("query", *maxResults) } else { queryParameters["MaxResults"] = autorest.Encode("query", 0) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Applications/{applicationId}/$/GetBackupConfigurationInfo", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetApplicationBackupConfigurationInfoSender sends the GetApplicationBackupConfigurationInfo request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetApplicationBackupConfigurationInfoSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetApplicationBackupConfigurationInfoResponder handles the response to the GetApplicationBackupConfigurationInfo request. The method always // closes the http.Response Body. func (client BaseClient) GetApplicationBackupConfigurationInfoResponder(resp *http.Response) (result PagedBackupConfigurationInfoList, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetApplicationBackupList returns a list of backups available for every partition in this Service Fabric application. // The server enumerates all the backups available at the backup location configured in the backup policy. It also // allows filtering of the result based on start and end datetime or just fetching the latest available backup for // every partition. // Parameters: // applicationID - the identity of the application. This is typically the full name of the application without // the 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the application name is "fabric:/myapp/app1", the application identity would be "myapp~app1" // in 6.0+ and "myapp/app1" in previous versions. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. // latest - specifies whether to get only the most recent backup available for a partition for the specified // time range. // startDateTimeFilter - specify the start date time from which to enumerate backups, in datetime format. The // date time must be specified in ISO8601 format. This is an optional parameter. If not specified, all backups // from the beginning are enumerated. // endDateTimeFilter - specify the end date time till which to enumerate backups, in datetime format. The date // time must be specified in ISO8601 format. This is an optional parameter. If not specified, enumeration is // done till the most recent backup. // continuationToken - the continuation token parameter is used to obtain next set of results. A continuation // token with a non empty value is included in the response of the API when the results from the system do not // fit in a single response. When this value is passed to the next API call, the API returns next set of // results. If there are no further results then the continuation token does not contain a value. The value of // this parameter should not be URL encoded. // maxResults - the maximum number of results to be returned as part of the paged queries. This parameter // defines the upper bound on the number of results returned. The results returned can be less than the // specified maximum results if they do not fit in the message as per the max message size restrictions defined // in the configuration. If this parameter is zero or not specified, the paged queries includes as many results // as possible that fit in the return message. func (client BaseClient) GetApplicationBackupList(ctx context.Context, applicationID string, timeout *int64, latest *bool, startDateTimeFilter *date.Time, endDateTimeFilter *date.Time, continuationToken string, maxResults *int64) (result PagedBackupInfoList, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetApplicationBackupList") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}, {TargetValue: maxResults, Constraints: []validation.Constraint{{Target: "maxResults", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "maxResults", Name: validation.InclusiveMinimum, Rule: int64(0), Chain: nil}}}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetApplicationBackupList", err.Error()) } req, err := client.GetApplicationBackupListPreparer(ctx, applicationID, timeout, latest, startDateTimeFilter, endDateTimeFilter, continuationToken, maxResults) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationBackupList", nil, "Failure preparing request") return } resp, err := client.GetApplicationBackupListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationBackupList", resp, "Failure sending request") return } result, err = client.GetApplicationBackupListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationBackupList", resp, "Failure responding to request") return } return } // GetApplicationBackupListPreparer prepares the GetApplicationBackupList request. func (client BaseClient) GetApplicationBackupListPreparer(ctx context.Context, applicationID string, timeout *int64, latest *bool, startDateTimeFilter *date.Time, endDateTimeFilter *date.Time, continuationToken string, maxResults *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationId": applicationID, } const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } if latest != nil { queryParameters["Latest"] = autorest.Encode("query", *latest) } else { queryParameters["Latest"] = autorest.Encode("query", false) } if startDateTimeFilter != nil { queryParameters["StartDateTimeFilter"] = autorest.Encode("query", *startDateTimeFilter) } if endDateTimeFilter != nil { queryParameters["EndDateTimeFilter"] = autorest.Encode("query", *endDateTimeFilter) } if len(continuationToken) > 0 { queryParameters["ContinuationToken"] = continuationToken } if maxResults != nil { queryParameters["MaxResults"] = autorest.Encode("query", *maxResults) } else { queryParameters["MaxResults"] = autorest.Encode("query", 0) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Applications/{applicationId}/$/GetBackups", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetApplicationBackupListSender sends the GetApplicationBackupList request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetApplicationBackupListSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetApplicationBackupListResponder handles the response to the GetApplicationBackupList request. The method always // closes the http.Response Body. func (client BaseClient) GetApplicationBackupListResponder(resp *http.Response) (result PagedBackupInfoList, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetApplicationEventList the response is list of ApplicationEvent objects. // Parameters: // applicationID - the identity of the application. This is typically the full name of the application without // the 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the application name is "fabric:/myapp/app1", the application identity would be "myapp~app1" // in 6.0+ and "myapp/app1" in previous versions. // startTimeUtc - the start time of a lookup query in ISO UTC yyyy-MM-ddTHH:mm:ssZ. // endTimeUtc - the end time of a lookup query in ISO UTC yyyy-MM-ddTHH:mm:ssZ. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. // eventsTypesFilter - this is a comma separated string specifying the types of FabricEvents that should only // be included in the response. // excludeAnalysisEvents - this param disables the retrieval of AnalysisEvents if true is passed. // skipCorrelationLookup - this param disables the search of CorrelatedEvents information if true is passed. // otherwise the CorrelationEvents get processed and HasCorrelatedEvents field in every FabricEvent gets // populated. func (client BaseClient) GetApplicationEventList(ctx context.Context, applicationID string, startTimeUtc string, endTimeUtc string, timeout *int64, eventsTypesFilter string, excludeAnalysisEvents *bool, skipCorrelationLookup *bool) (result ListApplicationEvent, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetApplicationEventList") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetApplicationEventList", err.Error()) } req, err := client.GetApplicationEventListPreparer(ctx, applicationID, startTimeUtc, endTimeUtc, timeout, eventsTypesFilter, excludeAnalysisEvents, skipCorrelationLookup) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationEventList", nil, "Failure preparing request") return } resp, err := client.GetApplicationEventListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationEventList", resp, "Failure sending request") return } result, err = client.GetApplicationEventListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationEventList", resp, "Failure responding to request") return } return } // GetApplicationEventListPreparer prepares the GetApplicationEventList request. func (client BaseClient) GetApplicationEventListPreparer(ctx context.Context, applicationID string, startTimeUtc string, endTimeUtc string, timeout *int64, eventsTypesFilter string, excludeAnalysisEvents *bool, skipCorrelationLookup *bool) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationId": applicationID, } const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, "EndTimeUtc": autorest.Encode("query", endTimeUtc), "StartTimeUtc": autorest.Encode("query", startTimeUtc), } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } if len(eventsTypesFilter) > 0 { queryParameters["EventsTypesFilter"] = autorest.Encode("query", eventsTypesFilter) } if excludeAnalysisEvents != nil { queryParameters["ExcludeAnalysisEvents"] = autorest.Encode("query", *excludeAnalysisEvents) } if skipCorrelationLookup != nil { queryParameters["SkipCorrelationLookup"] = autorest.Encode("query", *skipCorrelationLookup) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/EventsStore/Applications/{applicationId}/$/Events", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetApplicationEventListSender sends the GetApplicationEventList request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetApplicationEventListSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetApplicationEventListResponder handles the response to the GetApplicationEventList request. The method always // closes the http.Response Body. func (client BaseClient) GetApplicationEventListResponder(resp *http.Response) (result ListApplicationEvent, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetApplicationHealth returns the heath state of the service fabric application. The response reports either Ok, // Error or Warning health state. If the entity is not found in the health store, it will return Error. // Parameters: // applicationID - the identity of the application. This is typically the full name of the application without // the 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the application name is "fabric:/myapp/app1", the application identity would be "myapp~app1" // in 6.0+ and "myapp/app1" in previous versions. // eventsHealthStateFilter - allows filtering the collection of HealthEvent objects returned based on health // state. // The possible values for this parameter include integer value of one of the following health states. // Only events that match the filter are returned. All events are used to evaluate the aggregated health state. // If not specified, all entries are returned. The state values are flag based enumeration, so the value could // be a combination of these value obtained using bitwise 'OR' operator. For example, If the provided value is // 6 then all of the events with HealthState value of OK (2) and Warning (4) are returned. // // - Default - Default value. Matches any HealthState. The value is zero. // - None - Filter that doesn't match any HealthState value. Used in order to return no results on a given // collection of states. The value is 1. // - Ok - Filter that matches input with HealthState value Ok. The value is 2. // - Warning - Filter that matches input with HealthState value Warning. The value is 4. // - Error - Filter that matches input with HealthState value Error. The value is 8. // - All - Filter that matches input with any HealthState value. The value is 65535. // deployedApplicationsHealthStateFilter - allows filtering of the deployed applications health state objects // returned in the result of application health query based on their health state. // The possible values for this parameter include integer value of one of the following health states. Only // deployed applications that match the filter will be returned. // All deployed applications are used to evaluate the aggregated health state. If not specified, all entries // are returned. // The state values are flag based enumeration, so the value could be a combination of these value obtained // using bitwise 'OR' operator. // For example, if the provided value is 6 then health state of deployed applications with HealthState value of // OK (2) and Warning (4) are returned. // // - Default - Default value. Matches any HealthState. The value is zero. // - None - Filter that doesn't match any HealthState value. Used in order to return no results on a given // collection of states. The value is 1. // - Ok - Filter that matches input with HealthState value Ok. The value is 2. // - Warning - Filter that matches input with HealthState value Warning. The value is 4. // - Error - Filter that matches input with HealthState value Error. The value is 8. // - All - Filter that matches input with any HealthState value. The value is 65535. // servicesHealthStateFilter - allows filtering of the services health state objects returned in the result of // services health query based on their health state. // The possible values for this parameter include integer value of one of the following health states. // Only services that match the filter are returned. All services are used to evaluate the aggregated health // state. // If not specified, all entries are returned. The state values are flag based enumeration, so the value could // be a combination of these value // obtained using bitwise 'OR' operator. For example, if the provided value is 6 then health state of services // with HealthState value of OK (2) and Warning (4) will be returned. // // - Default - Default value. Matches any HealthState. The value is zero. // - None - Filter that doesn't match any HealthState value. Used in order to return no results on a given // collection of states. The value is 1. // - Ok - Filter that matches input with HealthState value Ok. The value is 2. // - Warning - Filter that matches input with HealthState value Warning. The value is 4. // - Error - Filter that matches input with HealthState value Error. The value is 8. // - All - Filter that matches input with any HealthState value. The value is 65535. // excludeHealthStatistics - indicates whether the health statistics should be returned as part of the query // result. False by default. // The statistics show the number of children entities in health state Ok, Warning, and Error. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetApplicationHealth(ctx context.Context, applicationID string, eventsHealthStateFilter *int32, deployedApplicationsHealthStateFilter *int32, servicesHealthStateFilter *int32, excludeHealthStatistics *bool, timeout *int64) (result ApplicationHealth, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetApplicationHealth") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetApplicationHealth", err.Error()) } req, err := client.GetApplicationHealthPreparer(ctx, applicationID, eventsHealthStateFilter, deployedApplicationsHealthStateFilter, servicesHealthStateFilter, excludeHealthStatistics, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationHealth", nil, "Failure preparing request") return } resp, err := client.GetApplicationHealthSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationHealth", resp, "Failure sending request") return } result, err = client.GetApplicationHealthResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationHealth", resp, "Failure responding to request") return } return } // GetApplicationHealthPreparer prepares the GetApplicationHealth request. func (client BaseClient) GetApplicationHealthPreparer(ctx context.Context, applicationID string, eventsHealthStateFilter *int32, deployedApplicationsHealthStateFilter *int32, servicesHealthStateFilter *int32, excludeHealthStatistics *bool, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationId": applicationID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if eventsHealthStateFilter != nil { queryParameters["EventsHealthStateFilter"] = autorest.Encode("query", *eventsHealthStateFilter) } else { queryParameters["EventsHealthStateFilter"] = autorest.Encode("query", 0) } if deployedApplicationsHealthStateFilter != nil { queryParameters["DeployedApplicationsHealthStateFilter"] = autorest.Encode("query", *deployedApplicationsHealthStateFilter) } else { queryParameters["DeployedApplicationsHealthStateFilter"] = autorest.Encode("query", 0) } if servicesHealthStateFilter != nil { queryParameters["ServicesHealthStateFilter"] = autorest.Encode("query", *servicesHealthStateFilter) } else { queryParameters["ServicesHealthStateFilter"] = autorest.Encode("query", 0) } if excludeHealthStatistics != nil { queryParameters["ExcludeHealthStatistics"] = autorest.Encode("query", *excludeHealthStatistics) } else { queryParameters["ExcludeHealthStatistics"] = autorest.Encode("query", false) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Applications/{applicationId}/$/GetHealth", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetApplicationHealthSender sends the GetApplicationHealth request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetApplicationHealthSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetApplicationHealthResponder handles the response to the GetApplicationHealth request. The method always // closes the http.Response Body. func (client BaseClient) GetApplicationHealthResponder(resp *http.Response) (result ApplicationHealth, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetApplicationHealthUsingPolicy gets the health of a Service Fabric application. Use EventsHealthStateFilter to // filter the collection of health events reported on the node based on the health state. Use ClusterHealthPolicies to // override the health policies used to evaluate the health. // Parameters: // applicationID - the identity of the application. This is typically the full name of the application without // the 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the application name is "fabric:/myapp/app1", the application identity would be "myapp~app1" // in 6.0+ and "myapp/app1" in previous versions. // eventsHealthStateFilter - allows filtering the collection of HealthEvent objects returned based on health // state. // The possible values for this parameter include integer value of one of the following health states. // Only events that match the filter are returned. All events are used to evaluate the aggregated health state. // If not specified, all entries are returned. The state values are flag based enumeration, so the value could // be a combination of these value obtained using bitwise 'OR' operator. For example, If the provided value is // 6 then all of the events with HealthState value of OK (2) and Warning (4) are returned. // // - Default - Default value. Matches any HealthState. The value is zero. // - None - Filter that doesn't match any HealthState value. Used in order to return no results on a given // collection of states. The value is 1. // - Ok - Filter that matches input with HealthState value Ok. The value is 2. // - Warning - Filter that matches input with HealthState value Warning. The value is 4. // - Error - Filter that matches input with HealthState value Error. The value is 8. // - All - Filter that matches input with any HealthState value. The value is 65535. // deployedApplicationsHealthStateFilter - allows filtering of the deployed applications health state objects // returned in the result of application health query based on their health state. // The possible values for this parameter include integer value of one of the following health states. Only // deployed applications that match the filter will be returned. // All deployed applications are used to evaluate the aggregated health state. If not specified, all entries // are returned. // The state values are flag based enumeration, so the value could be a combination of these value obtained // using bitwise 'OR' operator. // For example, if the provided value is 6 then health state of deployed applications with HealthState value of // OK (2) and Warning (4) are returned. // // - Default - Default value. Matches any HealthState. The value is zero. // - None - Filter that doesn't match any HealthState value. Used in order to return no results on a given // collection of states. The value is 1. // - Ok - Filter that matches input with HealthState value Ok. The value is 2. // - Warning - Filter that matches input with HealthState value Warning. The value is 4. // - Error - Filter that matches input with HealthState value Error. The value is 8. // - All - Filter that matches input with any HealthState value. The value is 65535. // servicesHealthStateFilter - allows filtering of the services health state objects returned in the result of // services health query based on their health state. // The possible values for this parameter include integer value of one of the following health states. // Only services that match the filter are returned. All services are used to evaluate the aggregated health // state. // If not specified, all entries are returned. The state values are flag based enumeration, so the value could // be a combination of these value // obtained using bitwise 'OR' operator. For example, if the provided value is 6 then health state of services // with HealthState value of OK (2) and Warning (4) will be returned. // // - Default - Default value. Matches any HealthState. The value is zero. // - None - Filter that doesn't match any HealthState value. Used in order to return no results on a given // collection of states. The value is 1. // - Ok - Filter that matches input with HealthState value Ok. The value is 2. // - Warning - Filter that matches input with HealthState value Warning. The value is 4. // - Error - Filter that matches input with HealthState value Error. The value is 8. // - All - Filter that matches input with any HealthState value. The value is 65535. // excludeHealthStatistics - indicates whether the health statistics should be returned as part of the query // result. False by default. // The statistics show the number of children entities in health state Ok, Warning, and Error. // applicationHealthPolicy - describes the health policies used to evaluate the health of an application or one // of its children. // If not present, the health evaluation uses the health policy from application manifest or the default health // policy. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetApplicationHealthUsingPolicy(ctx context.Context, applicationID string, eventsHealthStateFilter *int32, deployedApplicationsHealthStateFilter *int32, servicesHealthStateFilter *int32, excludeHealthStatistics *bool, applicationHealthPolicy *ApplicationHealthPolicy, timeout *int64) (result ApplicationHealth, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetApplicationHealthUsingPolicy") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetApplicationHealthUsingPolicy", err.Error()) } req, err := client.GetApplicationHealthUsingPolicyPreparer(ctx, applicationID, eventsHealthStateFilter, deployedApplicationsHealthStateFilter, servicesHealthStateFilter, excludeHealthStatistics, applicationHealthPolicy, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationHealthUsingPolicy", nil, "Failure preparing request") return } resp, err := client.GetApplicationHealthUsingPolicySender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationHealthUsingPolicy", resp, "Failure sending request") return } result, err = client.GetApplicationHealthUsingPolicyResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationHealthUsingPolicy", resp, "Failure responding to request") return } return } // GetApplicationHealthUsingPolicyPreparer prepares the GetApplicationHealthUsingPolicy request. func (client BaseClient) GetApplicationHealthUsingPolicyPreparer(ctx context.Context, applicationID string, eventsHealthStateFilter *int32, deployedApplicationsHealthStateFilter *int32, servicesHealthStateFilter *int32, excludeHealthStatistics *bool, applicationHealthPolicy *ApplicationHealthPolicy, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationId": applicationID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if eventsHealthStateFilter != nil { queryParameters["EventsHealthStateFilter"] = autorest.Encode("query", *eventsHealthStateFilter) } else { queryParameters["EventsHealthStateFilter"] = autorest.Encode("query", 0) } if deployedApplicationsHealthStateFilter != nil { queryParameters["DeployedApplicationsHealthStateFilter"] = autorest.Encode("query", *deployedApplicationsHealthStateFilter) } else { queryParameters["DeployedApplicationsHealthStateFilter"] = autorest.Encode("query", 0) } if servicesHealthStateFilter != nil { queryParameters["ServicesHealthStateFilter"] = autorest.Encode("query", *servicesHealthStateFilter) } else { queryParameters["ServicesHealthStateFilter"] = autorest.Encode("query", 0) } if excludeHealthStatistics != nil { queryParameters["ExcludeHealthStatistics"] = autorest.Encode("query", *excludeHealthStatistics) } else { queryParameters["ExcludeHealthStatistics"] = autorest.Encode("query", false) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Applications/{applicationId}/$/GetHealth", pathParameters), autorest.WithQueryParameters(queryParameters)) if applicationHealthPolicy != nil { preparer = autorest.DecoratePreparer(preparer, autorest.WithJSON(applicationHealthPolicy)) } return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetApplicationHealthUsingPolicySender sends the GetApplicationHealthUsingPolicy request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetApplicationHealthUsingPolicySender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetApplicationHealthUsingPolicyResponder handles the response to the GetApplicationHealthUsingPolicy request. The method always // closes the http.Response Body. func (client BaseClient) GetApplicationHealthUsingPolicyResponder(resp *http.Response) (result ApplicationHealth, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetApplicationInfo returns the information about the application that was created or in the process of being created // in the Service Fabric cluster and whose name matches the one specified as the parameter. The response includes the // name, type, status, parameters and other details about the application. // Parameters: // applicationID - the identity of the application. This is typically the full name of the application without // the 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the application name is "fabric:/myapp/app1", the application identity would be "myapp~app1" // in 6.0+ and "myapp/app1" in previous versions. // excludeApplicationParameters - the flag that specifies whether application parameters will be excluded from // the result. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetApplicationInfo(ctx context.Context, applicationID string, excludeApplicationParameters *bool, timeout *int64) (result ApplicationInfo, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetApplicationInfo") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetApplicationInfo", err.Error()) } req, err := client.GetApplicationInfoPreparer(ctx, applicationID, excludeApplicationParameters, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationInfo", nil, "Failure preparing request") return } resp, err := client.GetApplicationInfoSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationInfo", resp, "Failure sending request") return } result, err = client.GetApplicationInfoResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationInfo", resp, "Failure responding to request") return } return } // GetApplicationInfoPreparer prepares the GetApplicationInfo request. func (client BaseClient) GetApplicationInfoPreparer(ctx context.Context, applicationID string, excludeApplicationParameters *bool, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationId": applicationID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if excludeApplicationParameters != nil { queryParameters["ExcludeApplicationParameters"] = autorest.Encode("query", *excludeApplicationParameters) } else { queryParameters["ExcludeApplicationParameters"] = autorest.Encode("query", false) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Applications/{applicationId}", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetApplicationInfoSender sends the GetApplicationInfo request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetApplicationInfoSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetApplicationInfoResponder handles the response to the GetApplicationInfo request. The method always // closes the http.Response Body. func (client BaseClient) GetApplicationInfoResponder(resp *http.Response) (result ApplicationInfo, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusNoContent), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetApplicationInfoList gets the information about the applications that were created or in the process of being // created in the Service Fabric cluster and match the specified filters. The response includes the name, type, status, // parameters, and other details about the application. If the applications do not fit in a page, one page of results // is returned as well as a continuation token which can be used to get the next page. Filters ApplicationTypeName and // ApplicationDefinitionKindFilter cannot be specified at the same time. // Parameters: // applicationDefinitionKindFilter - used to filter on ApplicationDefinitionKind which is the mechanism used to // define a Service Fabric application. // - Default - Default value, which performs the same function as selecting "All". The value is 0. // - All - Filter that matches input with any ApplicationDefinitionKind value. The value is 65535. // - ServiceFabricApplicationDescription - Filter that matches input with ApplicationDefinitionKind value // ServiceFabricApplicationDescription. The value is 1. // - Compose - Filter that matches input with ApplicationDefinitionKind value Compose. The value is 2. // applicationTypeName - the application type name used to filter the applications to query for. This value // should not contain the application type version. // excludeApplicationParameters - the flag that specifies whether application parameters will be excluded from // the result. // continuationToken - the continuation token parameter is used to obtain next set of results. A continuation // token with a non empty value is included in the response of the API when the results from the system do not // fit in a single response. When this value is passed to the next API call, the API returns next set of // results. If there are no further results then the continuation token does not contain a value. The value of // this parameter should not be URL encoded. // maxResults - the maximum number of results to be returned as part of the paged queries. This parameter // defines the upper bound on the number of results returned. The results returned can be less than the // specified maximum results if they do not fit in the message as per the max message size restrictions defined // in the configuration. If this parameter is zero or not specified, the paged queries includes as many results // as possible that fit in the return message. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetApplicationInfoList(ctx context.Context, applicationDefinitionKindFilter *int32, applicationTypeName string, excludeApplicationParameters *bool, continuationToken string, maxResults *int64, timeout *int64) (result PagedApplicationInfoList, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetApplicationInfoList") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: maxResults, Constraints: []validation.Constraint{{Target: "maxResults", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "maxResults", Name: validation.InclusiveMinimum, Rule: int64(0), Chain: nil}}}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetApplicationInfoList", err.Error()) } req, err := client.GetApplicationInfoListPreparer(ctx, applicationDefinitionKindFilter, applicationTypeName, excludeApplicationParameters, continuationToken, maxResults, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationInfoList", nil, "Failure preparing request") return } resp, err := client.GetApplicationInfoListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationInfoList", resp, "Failure sending request") return } result, err = client.GetApplicationInfoListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationInfoList", resp, "Failure responding to request") return } return } // GetApplicationInfoListPreparer prepares the GetApplicationInfoList request. func (client BaseClient) GetApplicationInfoListPreparer(ctx context.Context, applicationDefinitionKindFilter *int32, applicationTypeName string, excludeApplicationParameters *bool, continuationToken string, maxResults *int64, timeout *int64) (*http.Request, error) { const APIVersion = "6.1" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if applicationDefinitionKindFilter != nil { queryParameters["ApplicationDefinitionKindFilter"] = autorest.Encode("query", *applicationDefinitionKindFilter) } else { queryParameters["ApplicationDefinitionKindFilter"] = autorest.Encode("query", 0) } if len(applicationTypeName) > 0 { queryParameters["ApplicationTypeName"] = autorest.Encode("query", applicationTypeName) } if excludeApplicationParameters != nil { queryParameters["ExcludeApplicationParameters"] = autorest.Encode("query", *excludeApplicationParameters) } else { queryParameters["ExcludeApplicationParameters"] = autorest.Encode("query", false) } if len(continuationToken) > 0 { queryParameters["ContinuationToken"] = continuationToken } if maxResults != nil { queryParameters["MaxResults"] = autorest.Encode("query", *maxResults) } else { queryParameters["MaxResults"] = autorest.Encode("query", 0) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/Applications"), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetApplicationInfoListSender sends the GetApplicationInfoList request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetApplicationInfoListSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetApplicationInfoListResponder handles the response to the GetApplicationInfoList request. The method always // closes the http.Response Body. func (client BaseClient) GetApplicationInfoListResponder(resp *http.Response) (result PagedApplicationInfoList, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetApplicationLoadInfo returns the load information about the application that was created or in the process of // being created in the Service Fabric cluster and whose name matches the one specified as the parameter. The response // includes the name, minimum nodes, maximum nodes, the number of nodes the application is occupying currently, and // application load metric information about the application. // Parameters: // applicationID - the identity of the application. This is typically the full name of the application without // the 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the application name is "fabric:/myapp/app1", the application identity would be "myapp~app1" // in 6.0+ and "myapp/app1" in previous versions. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetApplicationLoadInfo(ctx context.Context, applicationID string, timeout *int64) (result ApplicationLoadInfo, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetApplicationLoadInfo") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetApplicationLoadInfo", err.Error()) } req, err := client.GetApplicationLoadInfoPreparer(ctx, applicationID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationLoadInfo", nil, "Failure preparing request") return } resp, err := client.GetApplicationLoadInfoSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationLoadInfo", resp, "Failure sending request") return } result, err = client.GetApplicationLoadInfoResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationLoadInfo", resp, "Failure responding to request") return } return } // GetApplicationLoadInfoPreparer prepares the GetApplicationLoadInfo request. func (client BaseClient) GetApplicationLoadInfoPreparer(ctx context.Context, applicationID string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationId": applicationID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Applications/{applicationId}/$/GetLoadInformation", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetApplicationLoadInfoSender sends the GetApplicationLoadInfo request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetApplicationLoadInfoSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetApplicationLoadInfoResponder handles the response to the GetApplicationLoadInfo request. The method always // closes the http.Response Body. func (client BaseClient) GetApplicationLoadInfoResponder(resp *http.Response) (result ApplicationLoadInfo, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusNoContent), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetApplicationManifest gets the manifest describing an application type. The response contains the application // manifest XML as a string. // Parameters: // applicationTypeName - the name of the application type. // applicationTypeVersion - the version of the application type. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetApplicationManifest(ctx context.Context, applicationTypeName string, applicationTypeVersion string, timeout *int64) (result ApplicationTypeManifest, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetApplicationManifest") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetApplicationManifest", err.Error()) } req, err := client.GetApplicationManifestPreparer(ctx, applicationTypeName, applicationTypeVersion, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationManifest", nil, "Failure preparing request") return } resp, err := client.GetApplicationManifestSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationManifest", resp, "Failure sending request") return } result, err = client.GetApplicationManifestResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationManifest", resp, "Failure responding to request") return } return } // GetApplicationManifestPreparer prepares the GetApplicationManifest request. func (client BaseClient) GetApplicationManifestPreparer(ctx context.Context, applicationTypeName string, applicationTypeVersion string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationTypeName": autorest.Encode("path", applicationTypeName), } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, "ApplicationTypeVersion": autorest.Encode("query", applicationTypeVersion), } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/ApplicationTypes/{applicationTypeName}/$/GetApplicationManifest", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetApplicationManifestSender sends the GetApplicationManifest request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetApplicationManifestSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetApplicationManifestResponder handles the response to the GetApplicationManifest request. The method always // closes the http.Response Body. func (client BaseClient) GetApplicationManifestResponder(resp *http.Response) (result ApplicationTypeManifest, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetApplicationNameInfo gets the name of the application for the specified service. A 404 // FABRIC_E_SERVICE_DOES_NOT_EXIST error is returned if a service with the provided service ID does not exist. // Parameters: // serviceID - the identity of the service. This is typically the full name of the service without the // 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the service name is "fabric:/myapp/app1/svc1", the service identity would be // "myapp~app1~svc1" in 6.0+ and "myapp/app1/svc1" in previous versions. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetApplicationNameInfo(ctx context.Context, serviceID string, timeout *int64) (result ApplicationNameInfo, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetApplicationNameInfo") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetApplicationNameInfo", err.Error()) } req, err := client.GetApplicationNameInfoPreparer(ctx, serviceID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationNameInfo", nil, "Failure preparing request") return } resp, err := client.GetApplicationNameInfoSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationNameInfo", resp, "Failure sending request") return } result, err = client.GetApplicationNameInfoResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationNameInfo", resp, "Failure responding to request") return } return } // GetApplicationNameInfoPreparer prepares the GetApplicationNameInfo request. func (client BaseClient) GetApplicationNameInfoPreparer(ctx context.Context, serviceID string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "serviceId": serviceID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Services/{serviceId}/$/GetApplicationName", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetApplicationNameInfoSender sends the GetApplicationNameInfo request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetApplicationNameInfoSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetApplicationNameInfoResponder handles the response to the GetApplicationNameInfo request. The method always // closes the http.Response Body. func (client BaseClient) GetApplicationNameInfoResponder(resp *http.Response) (result ApplicationNameInfo, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetApplicationsEventList the response is list of ApplicationEvent objects. // Parameters: // startTimeUtc - the start time of a lookup query in ISO UTC yyyy-MM-ddTHH:mm:ssZ. // endTimeUtc - the end time of a lookup query in ISO UTC yyyy-MM-ddTHH:mm:ssZ. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. // eventsTypesFilter - this is a comma separated string specifying the types of FabricEvents that should only // be included in the response. // excludeAnalysisEvents - this param disables the retrieval of AnalysisEvents if true is passed. // skipCorrelationLookup - this param disables the search of CorrelatedEvents information if true is passed. // otherwise the CorrelationEvents get processed and HasCorrelatedEvents field in every FabricEvent gets // populated. func (client BaseClient) GetApplicationsEventList(ctx context.Context, startTimeUtc string, endTimeUtc string, timeout *int64, eventsTypesFilter string, excludeAnalysisEvents *bool, skipCorrelationLookup *bool) (result ListApplicationEvent, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetApplicationsEventList") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetApplicationsEventList", err.Error()) } req, err := client.GetApplicationsEventListPreparer(ctx, startTimeUtc, endTimeUtc, timeout, eventsTypesFilter, excludeAnalysisEvents, skipCorrelationLookup) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationsEventList", nil, "Failure preparing request") return } resp, err := client.GetApplicationsEventListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationsEventList", resp, "Failure sending request") return } result, err = client.GetApplicationsEventListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationsEventList", resp, "Failure responding to request") return } return } // GetApplicationsEventListPreparer prepares the GetApplicationsEventList request. func (client BaseClient) GetApplicationsEventListPreparer(ctx context.Context, startTimeUtc string, endTimeUtc string, timeout *int64, eventsTypesFilter string, excludeAnalysisEvents *bool, skipCorrelationLookup *bool) (*http.Request, error) { const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, "EndTimeUtc": autorest.Encode("query", endTimeUtc), "StartTimeUtc": autorest.Encode("query", startTimeUtc), } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } if len(eventsTypesFilter) > 0 { queryParameters["EventsTypesFilter"] = autorest.Encode("query", eventsTypesFilter) } if excludeAnalysisEvents != nil { queryParameters["ExcludeAnalysisEvents"] = autorest.Encode("query", *excludeAnalysisEvents) } if skipCorrelationLookup != nil { queryParameters["SkipCorrelationLookup"] = autorest.Encode("query", *skipCorrelationLookup) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/EventsStore/Applications/Events"), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetApplicationsEventListSender sends the GetApplicationsEventList request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetApplicationsEventListSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetApplicationsEventListResponder handles the response to the GetApplicationsEventList request. The method always // closes the http.Response Body. func (client BaseClient) GetApplicationsEventListResponder(resp *http.Response) (result ListApplicationEvent, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetApplicationTypeInfoList returns the information about the application types that are provisioned or in the // process of being provisioned in the Service Fabric cluster. Each version of an application type is returned as one // application type. The response includes the name, version, status and other details about the application type. This // is a paged query, meaning that if not all of the application types fit in a page, one page of results is returned as // well as a continuation token which can be used to get the next page. For example, if there are 10 application types // but a page only fits the first 3 application types, or if max results is set to 3, then 3 is returned. To access the // rest of the results, retrieve subsequent pages by using the returned continuation token in the next query. An empty // continuation token is returned if there are no subsequent pages. // Parameters: // applicationTypeDefinitionKindFilter - used to filter on ApplicationTypeDefinitionKind which is the mechanism // used to define a Service Fabric application type. // - Default - Default value, which performs the same function as selecting "All". The value is 0. // - All - Filter that matches input with any ApplicationTypeDefinitionKind value. The value is 65535. // - ServiceFabricApplicationPackage - Filter that matches input with ApplicationTypeDefinitionKind value // ServiceFabricApplicationPackage. The value is 1. // - Compose - Filter that matches input with ApplicationTypeDefinitionKind value Compose. The value is 2. // excludeApplicationParameters - the flag that specifies whether application parameters will be excluded from // the result. // continuationToken - the continuation token parameter is used to obtain next set of results. A continuation // token with a non empty value is included in the response of the API when the results from the system do not // fit in a single response. When this value is passed to the next API call, the API returns next set of // results. If there are no further results then the continuation token does not contain a value. The value of // this parameter should not be URL encoded. // maxResults - the maximum number of results to be returned as part of the paged queries. This parameter // defines the upper bound on the number of results returned. The results returned can be less than the // specified maximum results if they do not fit in the message as per the max message size restrictions defined // in the configuration. If this parameter is zero or not specified, the paged queries includes as many results // as possible that fit in the return message. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetApplicationTypeInfoList(ctx context.Context, applicationTypeDefinitionKindFilter *int32, excludeApplicationParameters *bool, continuationToken string, maxResults *int64, timeout *int64) (result PagedApplicationTypeInfoList, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetApplicationTypeInfoList") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: maxResults, Constraints: []validation.Constraint{{Target: "maxResults", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "maxResults", Name: validation.InclusiveMinimum, Rule: int64(0), Chain: nil}}}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetApplicationTypeInfoList", err.Error()) } req, err := client.GetApplicationTypeInfoListPreparer(ctx, applicationTypeDefinitionKindFilter, excludeApplicationParameters, continuationToken, maxResults, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationTypeInfoList", nil, "Failure preparing request") return } resp, err := client.GetApplicationTypeInfoListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationTypeInfoList", resp, "Failure sending request") return } result, err = client.GetApplicationTypeInfoListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationTypeInfoList", resp, "Failure responding to request") return } return } // GetApplicationTypeInfoListPreparer prepares the GetApplicationTypeInfoList request. func (client BaseClient) GetApplicationTypeInfoListPreparer(ctx context.Context, applicationTypeDefinitionKindFilter *int32, excludeApplicationParameters *bool, continuationToken string, maxResults *int64, timeout *int64) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if applicationTypeDefinitionKindFilter != nil { queryParameters["ApplicationTypeDefinitionKindFilter"] = autorest.Encode("query", *applicationTypeDefinitionKindFilter) } else { queryParameters["ApplicationTypeDefinitionKindFilter"] = autorest.Encode("query", 0) } if excludeApplicationParameters != nil { queryParameters["ExcludeApplicationParameters"] = autorest.Encode("query", *excludeApplicationParameters) } else { queryParameters["ExcludeApplicationParameters"] = autorest.Encode("query", false) } if len(continuationToken) > 0 { queryParameters["ContinuationToken"] = continuationToken } if maxResults != nil { queryParameters["MaxResults"] = autorest.Encode("query", *maxResults) } else { queryParameters["MaxResults"] = autorest.Encode("query", 0) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/ApplicationTypes"), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetApplicationTypeInfoListSender sends the GetApplicationTypeInfoList request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetApplicationTypeInfoListSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetApplicationTypeInfoListResponder handles the response to the GetApplicationTypeInfoList request. The method always // closes the http.Response Body. func (client BaseClient) GetApplicationTypeInfoListResponder(resp *http.Response) (result PagedApplicationTypeInfoList, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetApplicationTypeInfoListByName returns the information about the application types that are provisioned or in the // process of being provisioned in the Service Fabric cluster. These results are of application types whose name match // exactly the one specified as the parameter, and which comply with the given query parameters. All versions of the // application type matching the application type name are returned, with each version returned as one application // type. The response includes the name, version, status and other details about the application type. This is a paged // query, meaning that if not all of the application types fit in a page, one page of results is returned as well as a // continuation token which can be used to get the next page. For example, if there are 10 application types but a page // only fits the first 3 application types, or if max results is set to 3, then 3 is returned. To access the rest of // the results, retrieve subsequent pages by using the returned continuation token in the next query. An empty // continuation token is returned if there are no subsequent pages. // Parameters: // applicationTypeName - the name of the application type. // applicationTypeVersion - the version of the application type. // excludeApplicationParameters - the flag that specifies whether application parameters will be excluded from // the result. // continuationToken - the continuation token parameter is used to obtain next set of results. A continuation // token with a non empty value is included in the response of the API when the results from the system do not // fit in a single response. When this value is passed to the next API call, the API returns next set of // results. If there are no further results then the continuation token does not contain a value. The value of // this parameter should not be URL encoded. // maxResults - the maximum number of results to be returned as part of the paged queries. This parameter // defines the upper bound on the number of results returned. The results returned can be less than the // specified maximum results if they do not fit in the message as per the max message size restrictions defined // in the configuration. If this parameter is zero or not specified, the paged queries includes as many results // as possible that fit in the return message. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetApplicationTypeInfoListByName(ctx context.Context, applicationTypeName string, applicationTypeVersion string, excludeApplicationParameters *bool, continuationToken string, maxResults *int64, timeout *int64) (result PagedApplicationTypeInfoList, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetApplicationTypeInfoListByName") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: maxResults, Constraints: []validation.Constraint{{Target: "maxResults", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "maxResults", Name: validation.InclusiveMinimum, Rule: int64(0), Chain: nil}}}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetApplicationTypeInfoListByName", err.Error()) } req, err := client.GetApplicationTypeInfoListByNamePreparer(ctx, applicationTypeName, applicationTypeVersion, excludeApplicationParameters, continuationToken, maxResults, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationTypeInfoListByName", nil, "Failure preparing request") return } resp, err := client.GetApplicationTypeInfoListByNameSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationTypeInfoListByName", resp, "Failure sending request") return } result, err = client.GetApplicationTypeInfoListByNameResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationTypeInfoListByName", resp, "Failure responding to request") return } return } // GetApplicationTypeInfoListByNamePreparer prepares the GetApplicationTypeInfoListByName request. func (client BaseClient) GetApplicationTypeInfoListByNamePreparer(ctx context.Context, applicationTypeName string, applicationTypeVersion string, excludeApplicationParameters *bool, continuationToken string, maxResults *int64, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationTypeName": autorest.Encode("path", applicationTypeName), } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if len(applicationTypeVersion) > 0 { queryParameters["ApplicationTypeVersion"] = autorest.Encode("query", applicationTypeVersion) } if excludeApplicationParameters != nil { queryParameters["ExcludeApplicationParameters"] = autorest.Encode("query", *excludeApplicationParameters) } else { queryParameters["ExcludeApplicationParameters"] = autorest.Encode("query", false) } if len(continuationToken) > 0 { queryParameters["ContinuationToken"] = continuationToken } if maxResults != nil { queryParameters["MaxResults"] = autorest.Encode("query", *maxResults) } else { queryParameters["MaxResults"] = autorest.Encode("query", 0) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/ApplicationTypes/{applicationTypeName}", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetApplicationTypeInfoListByNameSender sends the GetApplicationTypeInfoListByName request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetApplicationTypeInfoListByNameSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetApplicationTypeInfoListByNameResponder handles the response to the GetApplicationTypeInfoListByName request. The method always // closes the http.Response Body. func (client BaseClient) GetApplicationTypeInfoListByNameResponder(resp *http.Response) (result PagedApplicationTypeInfoList, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetApplicationUpgrade returns information about the state of the latest application upgrade along with details to // aid debugging application health issues. // Parameters: // applicationID - the identity of the application. This is typically the full name of the application without // the 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the application name is "fabric:/myapp/app1", the application identity would be "myapp~app1" // in 6.0+ and "myapp/app1" in previous versions. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetApplicationUpgrade(ctx context.Context, applicationID string, timeout *int64) (result ApplicationUpgradeProgressInfo, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetApplicationUpgrade") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetApplicationUpgrade", err.Error()) } req, err := client.GetApplicationUpgradePreparer(ctx, applicationID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationUpgrade", nil, "Failure preparing request") return } resp, err := client.GetApplicationUpgradeSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationUpgrade", resp, "Failure sending request") return } result, err = client.GetApplicationUpgradeResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetApplicationUpgrade", resp, "Failure responding to request") return } return } // GetApplicationUpgradePreparer prepares the GetApplicationUpgrade request. func (client BaseClient) GetApplicationUpgradePreparer(ctx context.Context, applicationID string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationId": applicationID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Applications/{applicationId}/$/GetUpgradeProgress", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetApplicationUpgradeSender sends the GetApplicationUpgrade request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetApplicationUpgradeSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetApplicationUpgradeResponder handles the response to the GetApplicationUpgrade request. The method always // closes the http.Response Body. func (client BaseClient) GetApplicationUpgradeResponder(resp *http.Response) (result ApplicationUpgradeProgressInfo, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetBackupPolicyByName gets a particular backup policy identified by {backupPolicyName} // Parameters: // backupPolicyName - the name of the backup policy. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetBackupPolicyByName(ctx context.Context, backupPolicyName string, timeout *int64) (result BackupPolicyDescription, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetBackupPolicyByName") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetBackupPolicyByName", err.Error()) } req, err := client.GetBackupPolicyByNamePreparer(ctx, backupPolicyName, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetBackupPolicyByName", nil, "Failure preparing request") return } resp, err := client.GetBackupPolicyByNameSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetBackupPolicyByName", resp, "Failure sending request") return } result, err = client.GetBackupPolicyByNameResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetBackupPolicyByName", resp, "Failure responding to request") return } return } // GetBackupPolicyByNamePreparer prepares the GetBackupPolicyByName request. func (client BaseClient) GetBackupPolicyByNamePreparer(ctx context.Context, backupPolicyName string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "backupPolicyName": autorest.Encode("path", backupPolicyName), } const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/BackupRestore/BackupPolicies/{backupPolicyName}", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetBackupPolicyByNameSender sends the GetBackupPolicyByName request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetBackupPolicyByNameSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetBackupPolicyByNameResponder handles the response to the GetBackupPolicyByName request. The method always // closes the http.Response Body. func (client BaseClient) GetBackupPolicyByNameResponder(resp *http.Response) (result BackupPolicyDescription, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetBackupPolicyList get a list of all the backup policies configured. // Parameters: // continuationToken - the continuation token parameter is used to obtain next set of results. A continuation // token with a non empty value is included in the response of the API when the results from the system do not // fit in a single response. When this value is passed to the next API call, the API returns next set of // results. If there are no further results then the continuation token does not contain a value. The value of // this parameter should not be URL encoded. // maxResults - the maximum number of results to be returned as part of the paged queries. This parameter // defines the upper bound on the number of results returned. The results returned can be less than the // specified maximum results if they do not fit in the message as per the max message size restrictions defined // in the configuration. If this parameter is zero or not specified, the paged queries includes as many results // as possible that fit in the return message. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetBackupPolicyList(ctx context.Context, continuationToken string, maxResults *int64, timeout *int64) (result PagedBackupPolicyDescriptionList, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetBackupPolicyList") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: maxResults, Constraints: []validation.Constraint{{Target: "maxResults", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "maxResults", Name: validation.InclusiveMinimum, Rule: int64(0), Chain: nil}}}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetBackupPolicyList", err.Error()) } req, err := client.GetBackupPolicyListPreparer(ctx, continuationToken, maxResults, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetBackupPolicyList", nil, "Failure preparing request") return } resp, err := client.GetBackupPolicyListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetBackupPolicyList", resp, "Failure sending request") return } result, err = client.GetBackupPolicyListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetBackupPolicyList", resp, "Failure responding to request") return } return } // GetBackupPolicyListPreparer prepares the GetBackupPolicyList request. func (client BaseClient) GetBackupPolicyListPreparer(ctx context.Context, continuationToken string, maxResults *int64, timeout *int64) (*http.Request, error) { const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if len(continuationToken) > 0 { queryParameters["ContinuationToken"] = continuationToken } if maxResults != nil { queryParameters["MaxResults"] = autorest.Encode("query", *maxResults) } else { queryParameters["MaxResults"] = autorest.Encode("query", 0) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/BackupRestore/BackupPolicies"), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetBackupPolicyListSender sends the GetBackupPolicyList request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetBackupPolicyListSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetBackupPolicyListResponder handles the response to the GetBackupPolicyList request. The method always // closes the http.Response Body. func (client BaseClient) GetBackupPolicyListResponder(resp *http.Response) (result PagedBackupPolicyDescriptionList, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetBackupsFromBackupLocation gets the list of backups available for the specified backed up entity (Application, // Service or Partition) at the specified backup location (FileShare or Azure Blob Storage). // Parameters: // getBackupByStorageQueryDescription - describes the filters and backup storage details to be used for // enumerating backups. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. // continuationToken - the continuation token parameter is used to obtain next set of results. A continuation // token with a non empty value is included in the response of the API when the results from the system do not // fit in a single response. When this value is passed to the next API call, the API returns next set of // results. If there are no further results then the continuation token does not contain a value. The value of // this parameter should not be URL encoded. // maxResults - the maximum number of results to be returned as part of the paged queries. This parameter // defines the upper bound on the number of results returned. The results returned can be less than the // specified maximum results if they do not fit in the message as per the max message size restrictions defined // in the configuration. If this parameter is zero or not specified, the paged queries includes as many results // as possible that fit in the return message. func (client BaseClient) GetBackupsFromBackupLocation(ctx context.Context, getBackupByStorageQueryDescription GetBackupByStorageQueryDescription, timeout *int64, continuationToken string, maxResults *int64) (result PagedBackupInfoList, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetBackupsFromBackupLocation") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}, {TargetValue: maxResults, Constraints: []validation.Constraint{{Target: "maxResults", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "maxResults", Name: validation.InclusiveMinimum, Rule: int64(0), Chain: nil}}}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetBackupsFromBackupLocation", err.Error()) } req, err := client.GetBackupsFromBackupLocationPreparer(ctx, getBackupByStorageQueryDescription, timeout, continuationToken, maxResults) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetBackupsFromBackupLocation", nil, "Failure preparing request") return } resp, err := client.GetBackupsFromBackupLocationSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetBackupsFromBackupLocation", resp, "Failure sending request") return } result, err = client.GetBackupsFromBackupLocationResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetBackupsFromBackupLocation", resp, "Failure responding to request") return } return } // GetBackupsFromBackupLocationPreparer prepares the GetBackupsFromBackupLocation request. func (client BaseClient) GetBackupsFromBackupLocationPreparer(ctx context.Context, getBackupByStorageQueryDescription GetBackupByStorageQueryDescription, timeout *int64, continuationToken string, maxResults *int64) (*http.Request, error) { const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } if len(continuationToken) > 0 { queryParameters["ContinuationToken"] = continuationToken } if maxResults != nil { queryParameters["MaxResults"] = autorest.Encode("query", *maxResults) } else { queryParameters["MaxResults"] = autorest.Encode("query", 0) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/BackupRestore/$/GetBackups"), autorest.WithJSON(getBackupByStorageQueryDescription), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetBackupsFromBackupLocationSender sends the GetBackupsFromBackupLocation request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetBackupsFromBackupLocationSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetBackupsFromBackupLocationResponder handles the response to the GetBackupsFromBackupLocation request. The method always // closes the http.Response Body. func (client BaseClient) GetBackupsFromBackupLocationResponder(resp *http.Response) (result PagedBackupInfoList, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetChaos get the status of Chaos indicating whether or not Chaos is running, the Chaos parameters used for running // Chaos and the status of the Chaos Schedule. // Parameters: // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetChaos(ctx context.Context, timeout *int64) (result Chaos, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetChaos") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetChaos", err.Error()) } req, err := client.GetChaosPreparer(ctx, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetChaos", nil, "Failure preparing request") return } resp, err := client.GetChaosSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetChaos", resp, "Failure sending request") return } result, err = client.GetChaosResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetChaos", resp, "Failure responding to request") return } return } // GetChaosPreparer prepares the GetChaos request. func (client BaseClient) GetChaosPreparer(ctx context.Context, timeout *int64) (*http.Request, error) { const APIVersion = "6.2" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/Tools/Chaos"), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetChaosSender sends the GetChaos request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetChaosSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetChaosResponder handles the response to the GetChaos request. The method always // closes the http.Response Body. func (client BaseClient) GetChaosResponder(resp *http.Response) (result Chaos, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetChaosEvents to get the next segment of the Chaos events, you can specify the ContinuationToken. To get the start // of a new segment of Chaos events, you can specify the time range // through StartTimeUtc and EndTimeUtc. You cannot specify both the ContinuationToken and the time range in the same // call. // When there are more than 100 Chaos events, the Chaos events are returned in multiple segments where a segment // contains no more than 100 Chaos events and to get the next segment you make a call to this API with the continuation // token. // Parameters: // continuationToken - the continuation token parameter is used to obtain next set of results. A continuation // token with a non empty value is included in the response of the API when the results from the system do not // fit in a single response. When this value is passed to the next API call, the API returns next set of // results. If there are no further results then the continuation token does not contain a value. The value of // this parameter should not be URL encoded. // startTimeUtc - the Windows file time representing the start time of the time range for which a Chaos report // is to be generated. Please consult [DateTime.ToFileTimeUtc // Method](https://msdn.microsoft.com/en-us/library/system.datetime.tofiletimeutc(v=vs.110).aspx) for details. // endTimeUtc - the Windows file time representing the end time of the time range for which a Chaos report is // to be generated. Please consult [DateTime.ToFileTimeUtc // Method](https://msdn.microsoft.com/en-us/library/system.datetime.tofiletimeutc(v=vs.110).aspx) for details. // maxResults - the maximum number of results to be returned as part of the paged queries. This parameter // defines the upper bound on the number of results returned. The results returned can be less than the // specified maximum results if they do not fit in the message as per the max message size restrictions defined // in the configuration. If this parameter is zero or not specified, the paged queries includes as many results // as possible that fit in the return message. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetChaosEvents(ctx context.Context, continuationToken string, startTimeUtc string, endTimeUtc string, maxResults *int64, timeout *int64) (result ChaosEventsSegment, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetChaosEvents") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: maxResults, Constraints: []validation.Constraint{{Target: "maxResults", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "maxResults", Name: validation.InclusiveMinimum, Rule: int64(0), Chain: nil}}}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetChaosEvents", err.Error()) } req, err := client.GetChaosEventsPreparer(ctx, continuationToken, startTimeUtc, endTimeUtc, maxResults, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetChaosEvents", nil, "Failure preparing request") return } resp, err := client.GetChaosEventsSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetChaosEvents", resp, "Failure sending request") return } result, err = client.GetChaosEventsResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetChaosEvents", resp, "Failure responding to request") return } return } // GetChaosEventsPreparer prepares the GetChaosEvents request. func (client BaseClient) GetChaosEventsPreparer(ctx context.Context, continuationToken string, startTimeUtc string, endTimeUtc string, maxResults *int64, timeout *int64) (*http.Request, error) { const APIVersion = "6.2" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if len(continuationToken) > 0 { queryParameters["ContinuationToken"] = continuationToken } if len(startTimeUtc) > 0 { queryParameters["StartTimeUtc"] = autorest.Encode("query", startTimeUtc) } if len(endTimeUtc) > 0 { queryParameters["EndTimeUtc"] = autorest.Encode("query", endTimeUtc) } if maxResults != nil { queryParameters["MaxResults"] = autorest.Encode("query", *maxResults) } else { queryParameters["MaxResults"] = autorest.Encode("query", 0) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/Tools/Chaos/Events"), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetChaosEventsSender sends the GetChaosEvents request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetChaosEventsSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetChaosEventsResponder handles the response to the GetChaosEvents request. The method always // closes the http.Response Body. func (client BaseClient) GetChaosEventsResponder(resp *http.Response) (result ChaosEventsSegment, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetChaosSchedule gets the version of the Chaos Schedule in use and the Chaos Schedule that defines when and how to // run Chaos. func (client BaseClient) GetChaosSchedule(ctx context.Context) (result ChaosScheduleDescription, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetChaosSchedule") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } req, err := client.GetChaosSchedulePreparer(ctx) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetChaosSchedule", nil, "Failure preparing request") return } resp, err := client.GetChaosScheduleSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetChaosSchedule", resp, "Failure sending request") return } result, err = client.GetChaosScheduleResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetChaosSchedule", resp, "Failure responding to request") return } return } // GetChaosSchedulePreparer prepares the GetChaosSchedule request. func (client BaseClient) GetChaosSchedulePreparer(ctx context.Context) (*http.Request, error) { const APIVersion = "6.2" queryParameters := map[string]interface{}{ "api-version": APIVersion, } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/Tools/Chaos/Schedule"), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetChaosScheduleSender sends the GetChaosSchedule request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetChaosScheduleSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetChaosScheduleResponder handles the response to the GetChaosSchedule request. The method always // closes the http.Response Body. func (client BaseClient) GetChaosScheduleResponder(resp *http.Response) (result ChaosScheduleDescription, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetClusterConfiguration get the Service Fabric standalone cluster configuration. The cluster configuration contains // properties of the cluster that include different node types on the cluster, // security configurations, fault and upgrade domain topologies, etc. // Parameters: // configurationAPIVersion - the API version of the Standalone cluster json configuration. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetClusterConfiguration(ctx context.Context, configurationAPIVersion string, timeout *int64) (result ClusterConfiguration, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetClusterConfiguration") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetClusterConfiguration", err.Error()) } req, err := client.GetClusterConfigurationPreparer(ctx, configurationAPIVersion, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetClusterConfiguration", nil, "Failure preparing request") return } resp, err := client.GetClusterConfigurationSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetClusterConfiguration", resp, "Failure sending request") return } result, err = client.GetClusterConfigurationResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetClusterConfiguration", resp, "Failure responding to request") return } return } // GetClusterConfigurationPreparer prepares the GetClusterConfiguration request. func (client BaseClient) GetClusterConfigurationPreparer(ctx context.Context, configurationAPIVersion string, timeout *int64) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, "ConfigurationApiVersion": autorest.Encode("query", configurationAPIVersion), } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/$/GetClusterConfiguration"), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetClusterConfigurationSender sends the GetClusterConfiguration request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetClusterConfigurationSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetClusterConfigurationResponder handles the response to the GetClusterConfiguration request. The method always // closes the http.Response Body. func (client BaseClient) GetClusterConfigurationResponder(resp *http.Response) (result ClusterConfiguration, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetClusterConfigurationUpgradeStatus get the cluster configuration upgrade status details of a Service Fabric // standalone cluster. // Parameters: // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetClusterConfigurationUpgradeStatus(ctx context.Context, timeout *int64) (result ClusterConfigurationUpgradeStatusInfo, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetClusterConfigurationUpgradeStatus") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetClusterConfigurationUpgradeStatus", err.Error()) } req, err := client.GetClusterConfigurationUpgradeStatusPreparer(ctx, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetClusterConfigurationUpgradeStatus", nil, "Failure preparing request") return } resp, err := client.GetClusterConfigurationUpgradeStatusSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetClusterConfigurationUpgradeStatus", resp, "Failure sending request") return } result, err = client.GetClusterConfigurationUpgradeStatusResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetClusterConfigurationUpgradeStatus", resp, "Failure responding to request") return } return } // GetClusterConfigurationUpgradeStatusPreparer prepares the GetClusterConfigurationUpgradeStatus request. func (client BaseClient) GetClusterConfigurationUpgradeStatusPreparer(ctx context.Context, timeout *int64) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/$/GetClusterConfigurationUpgradeStatus"), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetClusterConfigurationUpgradeStatusSender sends the GetClusterConfigurationUpgradeStatus request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetClusterConfigurationUpgradeStatusSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetClusterConfigurationUpgradeStatusResponder handles the response to the GetClusterConfigurationUpgradeStatus request. The method always // closes the http.Response Body. func (client BaseClient) GetClusterConfigurationUpgradeStatusResponder(resp *http.Response) (result ClusterConfigurationUpgradeStatusInfo, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetClusterEventList the response is list of ClusterEvent objects. // Parameters: // startTimeUtc - the start time of a lookup query in ISO UTC yyyy-MM-ddTHH:mm:ssZ. // endTimeUtc - the end time of a lookup query in ISO UTC yyyy-MM-ddTHH:mm:ssZ. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. // eventsTypesFilter - this is a comma separated string specifying the types of FabricEvents that should only // be included in the response. // excludeAnalysisEvents - this param disables the retrieval of AnalysisEvents if true is passed. // skipCorrelationLookup - this param disables the search of CorrelatedEvents information if true is passed. // otherwise the CorrelationEvents get processed and HasCorrelatedEvents field in every FabricEvent gets // populated. func (client BaseClient) GetClusterEventList(ctx context.Context, startTimeUtc string, endTimeUtc string, timeout *int64, eventsTypesFilter string, excludeAnalysisEvents *bool, skipCorrelationLookup *bool) (result ListClusterEvent, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetClusterEventList") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetClusterEventList", err.Error()) } req, err := client.GetClusterEventListPreparer(ctx, startTimeUtc, endTimeUtc, timeout, eventsTypesFilter, excludeAnalysisEvents, skipCorrelationLookup) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetClusterEventList", nil, "Failure preparing request") return } resp, err := client.GetClusterEventListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetClusterEventList", resp, "Failure sending request") return } result, err = client.GetClusterEventListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetClusterEventList", resp, "Failure responding to request") return } return } // GetClusterEventListPreparer prepares the GetClusterEventList request. func (client BaseClient) GetClusterEventListPreparer(ctx context.Context, startTimeUtc string, endTimeUtc string, timeout *int64, eventsTypesFilter string, excludeAnalysisEvents *bool, skipCorrelationLookup *bool) (*http.Request, error) { const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, "EndTimeUtc": autorest.Encode("query", endTimeUtc), "StartTimeUtc": autorest.Encode("query", startTimeUtc), } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } if len(eventsTypesFilter) > 0 { queryParameters["EventsTypesFilter"] = autorest.Encode("query", eventsTypesFilter) } if excludeAnalysisEvents != nil { queryParameters["ExcludeAnalysisEvents"] = autorest.Encode("query", *excludeAnalysisEvents) } if skipCorrelationLookup != nil { queryParameters["SkipCorrelationLookup"] = autorest.Encode("query", *skipCorrelationLookup) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/EventsStore/Cluster/Events"), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetClusterEventListSender sends the GetClusterEventList request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetClusterEventListSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetClusterEventListResponder handles the response to the GetClusterEventList request. The method always // closes the http.Response Body. func (client BaseClient) GetClusterEventListResponder(resp *http.Response) (result ListClusterEvent, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetClusterHealth gets the health of a Service Fabric cluster. // Use EventsHealthStateFilter to filter the collection of health events reported on the cluster based on the health // state. // Similarly, use NodesHealthStateFilter and ApplicationsHealthStateFilter to filter the collection of nodes and // applications returned based on their aggregated health state. // Parameters: // nodesHealthStateFilter - allows filtering of the node health state objects returned in the result of cluster // health query // based on their health state. The possible values for this parameter include integer value of one of the // following health states. Only nodes that match the filter are returned. All nodes are used to evaluate the // aggregated health state. // If not specified, all entries are returned. // The state values are flag based enumeration, so the value could be a combination of these values obtained // using bitwise 'OR' operator. // For example, if the provided value is 6 then health state of nodes with HealthState value of OK (2) and // Warning (4) are returned. // // - Default - Default value. Matches any HealthState. The value is zero. // - None - Filter that doesn't match any HealthState value. Used in order to return no results on a given // collection of states. The value is 1. // - Ok - Filter that matches input with HealthState value Ok. The value is 2. // - Warning - Filter that matches input with HealthState value Warning. The value is 4. // - Error - Filter that matches input with HealthState value Error. The value is 8. // - All - Filter that matches input with any HealthState value. The value is 65535. // applicationsHealthStateFilter - allows filtering of the application health state objects returned in the // result of cluster health // query based on their health state. // The possible values for this parameter include integer value obtained from members or bitwise operations // on members of HealthStateFilter enumeration. Only applications that match the filter are returned. // All applications are used to evaluate the aggregated health state. If not specified, all entries are // returned. // The state values are flag based enumeration, so the value could be a combination of these values obtained // using bitwise 'OR' operator. // For example, if the provided value is 6 then health state of applications with HealthState value of OK (2) // and Warning (4) are returned. // // - Default - Default value. Matches any HealthState. The value is zero. // - None - Filter that doesn't match any HealthState value. Used in order to return no results on a given // collection of states. The value is 1. // - Ok - Filter that matches input with HealthState value Ok. The value is 2. // - Warning - Filter that matches input with HealthState value Warning. The value is 4. // - Error - Filter that matches input with HealthState value Error. The value is 8. // - All - Filter that matches input with any HealthState value. The value is 65535. // eventsHealthStateFilter - allows filtering the collection of HealthEvent objects returned based on health // state. // The possible values for this parameter include integer value of one of the following health states. // Only events that match the filter are returned. All events are used to evaluate the aggregated health state. // If not specified, all entries are returned. The state values are flag based enumeration, so the value could // be a combination of these value obtained using bitwise 'OR' operator. For example, If the provided value is // 6 then all of the events with HealthState value of OK (2) and Warning (4) are returned. // // - Default - Default value. Matches any HealthState. The value is zero. // - None - Filter that doesn't match any HealthState value. Used in order to return no results on a given // collection of states. The value is 1. // - Ok - Filter that matches input with HealthState value Ok. The value is 2. // - Warning - Filter that matches input with HealthState value Warning. The value is 4. // - Error - Filter that matches input with HealthState value Error. The value is 8. // - All - Filter that matches input with any HealthState value. The value is 65535. // excludeHealthStatistics - indicates whether the health statistics should be returned as part of the query // result. False by default. // The statistics show the number of children entities in health state Ok, Warning, and Error. // includeSystemApplicationHealthStatistics - indicates whether the health statistics should include the // fabric:/System application health statistics. False by default. // If IncludeSystemApplicationHealthStatistics is set to true, the health statistics include the entities that // belong to the fabric:/System application. // Otherwise, the query result includes health statistics only for user applications. // The health statistics must be included in the query result for this parameter to be applied. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetClusterHealth(ctx context.Context, nodesHealthStateFilter *int32, applicationsHealthStateFilter *int32, eventsHealthStateFilter *int32, excludeHealthStatistics *bool, includeSystemApplicationHealthStatistics *bool, timeout *int64) (result ClusterHealth, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetClusterHealth") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetClusterHealth", err.Error()) } req, err := client.GetClusterHealthPreparer(ctx, nodesHealthStateFilter, applicationsHealthStateFilter, eventsHealthStateFilter, excludeHealthStatistics, includeSystemApplicationHealthStatistics, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetClusterHealth", nil, "Failure preparing request") return } resp, err := client.GetClusterHealthSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetClusterHealth", resp, "Failure sending request") return } result, err = client.GetClusterHealthResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetClusterHealth", resp, "Failure responding to request") return } return } // GetClusterHealthPreparer prepares the GetClusterHealth request. func (client BaseClient) GetClusterHealthPreparer(ctx context.Context, nodesHealthStateFilter *int32, applicationsHealthStateFilter *int32, eventsHealthStateFilter *int32, excludeHealthStatistics *bool, includeSystemApplicationHealthStatistics *bool, timeout *int64) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if nodesHealthStateFilter != nil { queryParameters["NodesHealthStateFilter"] = autorest.Encode("query", *nodesHealthStateFilter) } else { queryParameters["NodesHealthStateFilter"] = autorest.Encode("query", 0) } if applicationsHealthStateFilter != nil { queryParameters["ApplicationsHealthStateFilter"] = autorest.Encode("query", *applicationsHealthStateFilter) } else { queryParameters["ApplicationsHealthStateFilter"] = autorest.Encode("query", 0) } if eventsHealthStateFilter != nil { queryParameters["EventsHealthStateFilter"] = autorest.Encode("query", *eventsHealthStateFilter) } else { queryParameters["EventsHealthStateFilter"] = autorest.Encode("query", 0) } if excludeHealthStatistics != nil { queryParameters["ExcludeHealthStatistics"] = autorest.Encode("query", *excludeHealthStatistics) } else { queryParameters["ExcludeHealthStatistics"] = autorest.Encode("query", false) } if includeSystemApplicationHealthStatistics != nil { queryParameters["IncludeSystemApplicationHealthStatistics"] = autorest.Encode("query", *includeSystemApplicationHealthStatistics) } else { queryParameters["IncludeSystemApplicationHealthStatistics"] = autorest.Encode("query", false) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/$/GetClusterHealth"), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetClusterHealthSender sends the GetClusterHealth request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetClusterHealthSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetClusterHealthResponder handles the response to the GetClusterHealth request. The method always // closes the http.Response Body. func (client BaseClient) GetClusterHealthResponder(resp *http.Response) (result ClusterHealth, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetClusterHealthChunk gets the health of a Service Fabric cluster using health chunks. Includes the aggregated // health state of the cluster, but none of the cluster entities. // To expand the cluster health and get the health state of all or some of the entities, use the POST URI and specify // the cluster health chunk query description. // Parameters: // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetClusterHealthChunk(ctx context.Context, timeout *int64) (result ClusterHealthChunk, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetClusterHealthChunk") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetClusterHealthChunk", err.Error()) } req, err := client.GetClusterHealthChunkPreparer(ctx, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetClusterHealthChunk", nil, "Failure preparing request") return } resp, err := client.GetClusterHealthChunkSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetClusterHealthChunk", resp, "Failure sending request") return } result, err = client.GetClusterHealthChunkResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetClusterHealthChunk", resp, "Failure responding to request") return } return } // GetClusterHealthChunkPreparer prepares the GetClusterHealthChunk request. func (client BaseClient) GetClusterHealthChunkPreparer(ctx context.Context, timeout *int64) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/$/GetClusterHealthChunk"), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetClusterHealthChunkSender sends the GetClusterHealthChunk request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetClusterHealthChunkSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetClusterHealthChunkResponder handles the response to the GetClusterHealthChunk request. The method always // closes the http.Response Body. func (client BaseClient) GetClusterHealthChunkResponder(resp *http.Response) (result ClusterHealthChunk, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetClusterHealthChunkUsingPolicyAndAdvancedFilters gets the health of a Service Fabric cluster using health chunks. // The health evaluation is done based on the input cluster health chunk query description. // The query description allows users to specify health policies for evaluating the cluster and its children. // Users can specify very flexible filters to select which cluster entities to return. The selection can be done based // on the entities health state and based on the hierarchy. // The query can return multi-level children of the entities based on the specified filters. For example, it can return // one application with a specified name, and for this application, return // only services that are in Error or Warning, and all partitions and replicas for one of these services. // Parameters: // clusterHealthChunkQueryDescription - describes the cluster and application health policies used to evaluate // the cluster health and the filters to select which cluster entities to be returned. // If the cluster health policy is present, it is used to evaluate the cluster events and the cluster nodes. If // not present, the health evaluation uses the cluster health policy defined in the cluster manifest or the // default cluster health policy. // By default, each application is evaluated using its specific application health policy, defined in the // application manifest, or the default health policy, if no policy is defined in manifest. // If the application health policy map is specified, and it has an entry for an application, the specified // application health policy // is used to evaluate the application health. // Users can specify very flexible filters to select which cluster entities to include in response. The // selection can be done based on the entities health state and based on the hierarchy. // The query can return multi-level children of the entities based on the specified filters. For example, it // can return one application with a specified name, and for this application, return // only services that are in Error or Warning, and all partitions and replicas for one of these services. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetClusterHealthChunkUsingPolicyAndAdvancedFilters(ctx context.Context, clusterHealthChunkQueryDescription *ClusterHealthChunkQueryDescription, timeout *int64) (result ClusterHealthChunk, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetClusterHealthChunkUsingPolicyAndAdvancedFilters") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetClusterHealthChunkUsingPolicyAndAdvancedFilters", err.Error()) } req, err := client.GetClusterHealthChunkUsingPolicyAndAdvancedFiltersPreparer(ctx, clusterHealthChunkQueryDescription, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetClusterHealthChunkUsingPolicyAndAdvancedFilters", nil, "Failure preparing request") return } resp, err := client.GetClusterHealthChunkUsingPolicyAndAdvancedFiltersSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetClusterHealthChunkUsingPolicyAndAdvancedFilters", resp, "Failure sending request") return } result, err = client.GetClusterHealthChunkUsingPolicyAndAdvancedFiltersResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetClusterHealthChunkUsingPolicyAndAdvancedFilters", resp, "Failure responding to request") return } return } // GetClusterHealthChunkUsingPolicyAndAdvancedFiltersPreparer prepares the GetClusterHealthChunkUsingPolicyAndAdvancedFilters request. func (client BaseClient) GetClusterHealthChunkUsingPolicyAndAdvancedFiltersPreparer(ctx context.Context, clusterHealthChunkQueryDescription *ClusterHealthChunkQueryDescription, timeout *int64) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/$/GetClusterHealthChunk"), autorest.WithQueryParameters(queryParameters)) if clusterHealthChunkQueryDescription != nil { preparer = autorest.DecoratePreparer(preparer, autorest.WithJSON(clusterHealthChunkQueryDescription)) } return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetClusterHealthChunkUsingPolicyAndAdvancedFiltersSender sends the GetClusterHealthChunkUsingPolicyAndAdvancedFilters request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetClusterHealthChunkUsingPolicyAndAdvancedFiltersSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetClusterHealthChunkUsingPolicyAndAdvancedFiltersResponder handles the response to the GetClusterHealthChunkUsingPolicyAndAdvancedFilters request. The method always // closes the http.Response Body. func (client BaseClient) GetClusterHealthChunkUsingPolicyAndAdvancedFiltersResponder(resp *http.Response) (result ClusterHealthChunk, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetClusterHealthUsingPolicy gets the health of a Service Fabric cluster. // Use EventsHealthStateFilter to filter the collection of health events reported on the cluster based on the health // state. // Similarly, use NodesHealthStateFilter and ApplicationsHealthStateFilter to filter the collection of nodes and // applications returned based on their aggregated health state. // Use ClusterHealthPolicies to override the health policies used to evaluate the health. // Parameters: // nodesHealthStateFilter - allows filtering of the node health state objects returned in the result of cluster // health query // based on their health state. The possible values for this parameter include integer value of one of the // following health states. Only nodes that match the filter are returned. All nodes are used to evaluate the // aggregated health state. // If not specified, all entries are returned. // The state values are flag based enumeration, so the value could be a combination of these values obtained // using bitwise 'OR' operator. // For example, if the provided value is 6 then health state of nodes with HealthState value of OK (2) and // Warning (4) are returned. // // - Default - Default value. Matches any HealthState. The value is zero. // - None - Filter that doesn't match any HealthState value. Used in order to return no results on a given // collection of states. The value is 1. // - Ok - Filter that matches input with HealthState value Ok. The value is 2. // - Warning - Filter that matches input with HealthState value Warning. The value is 4. // - Error - Filter that matches input with HealthState value Error. The value is 8. // - All - Filter that matches input with any HealthState value. The value is 65535. // applicationsHealthStateFilter - allows filtering of the application health state objects returned in the // result of cluster health // query based on their health state. // The possible values for this parameter include integer value obtained from members or bitwise operations // on members of HealthStateFilter enumeration. Only applications that match the filter are returned. // All applications are used to evaluate the aggregated health state. If not specified, all entries are // returned. // The state values are flag based enumeration, so the value could be a combination of these values obtained // using bitwise 'OR' operator. // For example, if the provided value is 6 then health state of applications with HealthState value of OK (2) // and Warning (4) are returned. // // - Default - Default value. Matches any HealthState. The value is zero. // - None - Filter that doesn't match any HealthState value. Used in order to return no results on a given // collection of states. The value is 1. // - Ok - Filter that matches input with HealthState value Ok. The value is 2. // - Warning - Filter that matches input with HealthState value Warning. The value is 4. // - Error - Filter that matches input with HealthState value Error. The value is 8. // - All - Filter that matches input with any HealthState value. The value is 65535. // eventsHealthStateFilter - allows filtering the collection of HealthEvent objects returned based on health // state. // The possible values for this parameter include integer value of one of the following health states. // Only events that match the filter are returned. All events are used to evaluate the aggregated health state. // If not specified, all entries are returned. The state values are flag based enumeration, so the value could // be a combination of these value obtained using bitwise 'OR' operator. For example, If the provided value is // 6 then all of the events with HealthState value of OK (2) and Warning (4) are returned. // // - Default - Default value. Matches any HealthState. The value is zero. // - None - Filter that doesn't match any HealthState value. Used in order to return no results on a given // collection of states. The value is 1. // - Ok - Filter that matches input with HealthState value Ok. The value is 2. // - Warning - Filter that matches input with HealthState value Warning. The value is 4. // - Error - Filter that matches input with HealthState value Error. The value is 8. // - All - Filter that matches input with any HealthState value. The value is 65535. // excludeHealthStatistics - indicates whether the health statistics should be returned as part of the query // result. False by default. // The statistics show the number of children entities in health state Ok, Warning, and Error. // includeSystemApplicationHealthStatistics - indicates whether the health statistics should include the // fabric:/System application health statistics. False by default. // If IncludeSystemApplicationHealthStatistics is set to true, the health statistics include the entities that // belong to the fabric:/System application. // Otherwise, the query result includes health statistics only for user applications. // The health statistics must be included in the query result for this parameter to be applied. // clusterHealthPolicies - describes the health policies used to evaluate the cluster health. // If not present, the health evaluation uses the cluster health policy defined in the cluster manifest or the // default cluster health policy. // By default, each application is evaluated using its specific application health policy, defined in the // application manifest, or the default health policy, if no policy is defined in manifest. // If the application health policy map is specified, and it has an entry for an application, the specified // application health policy // is used to evaluate the application health. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetClusterHealthUsingPolicy(ctx context.Context, nodesHealthStateFilter *int32, applicationsHealthStateFilter *int32, eventsHealthStateFilter *int32, excludeHealthStatistics *bool, includeSystemApplicationHealthStatistics *bool, clusterHealthPolicies *ClusterHealthPolicies, timeout *int64) (result ClusterHealth, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetClusterHealthUsingPolicy") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetClusterHealthUsingPolicy", err.Error()) } req, err := client.GetClusterHealthUsingPolicyPreparer(ctx, nodesHealthStateFilter, applicationsHealthStateFilter, eventsHealthStateFilter, excludeHealthStatistics, includeSystemApplicationHealthStatistics, clusterHealthPolicies, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetClusterHealthUsingPolicy", nil, "Failure preparing request") return } resp, err := client.GetClusterHealthUsingPolicySender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetClusterHealthUsingPolicy", resp, "Failure sending request") return } result, err = client.GetClusterHealthUsingPolicyResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetClusterHealthUsingPolicy", resp, "Failure responding to request") return } return } // GetClusterHealthUsingPolicyPreparer prepares the GetClusterHealthUsingPolicy request. func (client BaseClient) GetClusterHealthUsingPolicyPreparer(ctx context.Context, nodesHealthStateFilter *int32, applicationsHealthStateFilter *int32, eventsHealthStateFilter *int32, excludeHealthStatistics *bool, includeSystemApplicationHealthStatistics *bool, clusterHealthPolicies *ClusterHealthPolicies, timeout *int64) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if nodesHealthStateFilter != nil { queryParameters["NodesHealthStateFilter"] = autorest.Encode("query", *nodesHealthStateFilter) } else { queryParameters["NodesHealthStateFilter"] = autorest.Encode("query", 0) } if applicationsHealthStateFilter != nil { queryParameters["ApplicationsHealthStateFilter"] = autorest.Encode("query", *applicationsHealthStateFilter) } else { queryParameters["ApplicationsHealthStateFilter"] = autorest.Encode("query", 0) } if eventsHealthStateFilter != nil { queryParameters["EventsHealthStateFilter"] = autorest.Encode("query", *eventsHealthStateFilter) } else { queryParameters["EventsHealthStateFilter"] = autorest.Encode("query", 0) } if excludeHealthStatistics != nil { queryParameters["ExcludeHealthStatistics"] = autorest.Encode("query", *excludeHealthStatistics) } else { queryParameters["ExcludeHealthStatistics"] = autorest.Encode("query", false) } if includeSystemApplicationHealthStatistics != nil { queryParameters["IncludeSystemApplicationHealthStatistics"] = autorest.Encode("query", *includeSystemApplicationHealthStatistics) } else { queryParameters["IncludeSystemApplicationHealthStatistics"] = autorest.Encode("query", false) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/$/GetClusterHealth"), autorest.WithQueryParameters(queryParameters)) if clusterHealthPolicies != nil { preparer = autorest.DecoratePreparer(preparer, autorest.WithJSON(clusterHealthPolicies)) } return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetClusterHealthUsingPolicySender sends the GetClusterHealthUsingPolicy request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetClusterHealthUsingPolicySender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetClusterHealthUsingPolicyResponder handles the response to the GetClusterHealthUsingPolicy request. The method always // closes the http.Response Body. func (client BaseClient) GetClusterHealthUsingPolicyResponder(resp *http.Response) (result ClusterHealth, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetClusterManifest get the Service Fabric cluster manifest. The cluster manifest contains properties of the cluster // that include different node types on the cluster, // security configurations, fault and upgrade domain topologies, etc. // // These properties are specified as part of the ClusterConfig.JSON file while deploying a stand alone cluster. // However, most of the information in the cluster manifest // is generated internally by service fabric during cluster deployment in other deployment scenarios (e.g. when using // azure portal). // // The contents of the cluster manifest are for informational purposes only and users are not expected to take a // dependency on the format of the file contents or its interpretation. // Parameters: // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetClusterManifest(ctx context.Context, timeout *int64) (result ClusterManifest, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetClusterManifest") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetClusterManifest", err.Error()) } req, err := client.GetClusterManifestPreparer(ctx, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetClusterManifest", nil, "Failure preparing request") return } resp, err := client.GetClusterManifestSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetClusterManifest", resp, "Failure sending request") return } result, err = client.GetClusterManifestResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetClusterManifest", resp, "Failure responding to request") return } return } // GetClusterManifestPreparer prepares the GetClusterManifest request. func (client BaseClient) GetClusterManifestPreparer(ctx context.Context, timeout *int64) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/$/GetClusterManifest"), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetClusterManifestSender sends the GetClusterManifest request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetClusterManifestSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetClusterManifestResponder handles the response to the GetClusterManifest request. The method always // closes the http.Response Body. func (client BaseClient) GetClusterManifestResponder(resp *http.Response) (result ClusterManifest, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetClusterUpgradeProgress gets the current progress of the ongoing cluster upgrade. If no upgrade is currently in // progress, gets the last state of the previous cluster upgrade. // Parameters: // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetClusterUpgradeProgress(ctx context.Context, timeout *int64) (result ClusterUpgradeProgressObject, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetClusterUpgradeProgress") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetClusterUpgradeProgress", err.Error()) } req, err := client.GetClusterUpgradeProgressPreparer(ctx, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetClusterUpgradeProgress", nil, "Failure preparing request") return } resp, err := client.GetClusterUpgradeProgressSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetClusterUpgradeProgress", resp, "Failure sending request") return } result, err = client.GetClusterUpgradeProgressResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetClusterUpgradeProgress", resp, "Failure responding to request") return } return } // GetClusterUpgradeProgressPreparer prepares the GetClusterUpgradeProgress request. func (client BaseClient) GetClusterUpgradeProgressPreparer(ctx context.Context, timeout *int64) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/$/GetUpgradeProgress"), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetClusterUpgradeProgressSender sends the GetClusterUpgradeProgress request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetClusterUpgradeProgressSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetClusterUpgradeProgressResponder handles the response to the GetClusterUpgradeProgress request. The method always // closes the http.Response Body. func (client BaseClient) GetClusterUpgradeProgressResponder(resp *http.Response) (result ClusterUpgradeProgressObject, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetComposeDeploymentStatus returns the status of the compose deployment that was created or in the process of being // created in the Service Fabric cluster and whose name matches the one specified as the parameter. The response // includes the name, status and other details about the deployment. // Parameters: // deploymentName - the identity of the deployment. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetComposeDeploymentStatus(ctx context.Context, deploymentName string, timeout *int64) (result ComposeDeploymentStatusInfo, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetComposeDeploymentStatus") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetComposeDeploymentStatus", err.Error()) } req, err := client.GetComposeDeploymentStatusPreparer(ctx, deploymentName, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetComposeDeploymentStatus", nil, "Failure preparing request") return } resp, err := client.GetComposeDeploymentStatusSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetComposeDeploymentStatus", resp, "Failure sending request") return } result, err = client.GetComposeDeploymentStatusResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetComposeDeploymentStatus", resp, "Failure responding to request") return } return } // GetComposeDeploymentStatusPreparer prepares the GetComposeDeploymentStatus request. func (client BaseClient) GetComposeDeploymentStatusPreparer(ctx context.Context, deploymentName string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "deploymentName": deploymentName, } const APIVersion = "6.0-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/ComposeDeployments/{deploymentName}", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetComposeDeploymentStatusSender sends the GetComposeDeploymentStatus request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetComposeDeploymentStatusSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetComposeDeploymentStatusResponder handles the response to the GetComposeDeploymentStatus request. The method always // closes the http.Response Body. func (client BaseClient) GetComposeDeploymentStatusResponder(resp *http.Response) (result ComposeDeploymentStatusInfo, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetComposeDeploymentStatusList gets the status about the compose deployments that were created or in the process of // being created in the Service Fabric cluster. The response includes the name, status and other details about the // compose deployments. If the list of deployments do not fit in a page, one page of results is returned as well as a // continuation token which can be used to get the next page. // Parameters: // continuationToken - the continuation token parameter is used to obtain next set of results. A continuation // token with a non empty value is included in the response of the API when the results from the system do not // fit in a single response. When this value is passed to the next API call, the API returns next set of // results. If there are no further results then the continuation token does not contain a value. The value of // this parameter should not be URL encoded. // maxResults - the maximum number of results to be returned as part of the paged queries. This parameter // defines the upper bound on the number of results returned. The results returned can be less than the // specified maximum results if they do not fit in the message as per the max message size restrictions defined // in the configuration. If this parameter is zero or not specified, the paged queries includes as many results // as possible that fit in the return message. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetComposeDeploymentStatusList(ctx context.Context, continuationToken string, maxResults *int64, timeout *int64) (result PagedComposeDeploymentStatusInfoList, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetComposeDeploymentStatusList") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: maxResults, Constraints: []validation.Constraint{{Target: "maxResults", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "maxResults", Name: validation.InclusiveMinimum, Rule: int64(0), Chain: nil}}}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetComposeDeploymentStatusList", err.Error()) } req, err := client.GetComposeDeploymentStatusListPreparer(ctx, continuationToken, maxResults, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetComposeDeploymentStatusList", nil, "Failure preparing request") return } resp, err := client.GetComposeDeploymentStatusListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetComposeDeploymentStatusList", resp, "Failure sending request") return } result, err = client.GetComposeDeploymentStatusListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetComposeDeploymentStatusList", resp, "Failure responding to request") return } return } // GetComposeDeploymentStatusListPreparer prepares the GetComposeDeploymentStatusList request. func (client BaseClient) GetComposeDeploymentStatusListPreparer(ctx context.Context, continuationToken string, maxResults *int64, timeout *int64) (*http.Request, error) { const APIVersion = "6.0-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if len(continuationToken) > 0 { queryParameters["ContinuationToken"] = continuationToken } if maxResults != nil { queryParameters["MaxResults"] = autorest.Encode("query", *maxResults) } else { queryParameters["MaxResults"] = autorest.Encode("query", 0) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/ComposeDeployments"), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetComposeDeploymentStatusListSender sends the GetComposeDeploymentStatusList request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetComposeDeploymentStatusListSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetComposeDeploymentStatusListResponder handles the response to the GetComposeDeploymentStatusList request. The method always // closes the http.Response Body. func (client BaseClient) GetComposeDeploymentStatusListResponder(resp *http.Response) (result PagedComposeDeploymentStatusInfoList, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetComposeDeploymentUpgradeProgress returns the information about the state of the compose deployment upgrade along // with details to aid debugging application health issues. // Parameters: // deploymentName - the identity of the deployment. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetComposeDeploymentUpgradeProgress(ctx context.Context, deploymentName string, timeout *int64) (result ComposeDeploymentUpgradeProgressInfo, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetComposeDeploymentUpgradeProgress") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetComposeDeploymentUpgradeProgress", err.Error()) } req, err := client.GetComposeDeploymentUpgradeProgressPreparer(ctx, deploymentName, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetComposeDeploymentUpgradeProgress", nil, "Failure preparing request") return } resp, err := client.GetComposeDeploymentUpgradeProgressSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetComposeDeploymentUpgradeProgress", resp, "Failure sending request") return } result, err = client.GetComposeDeploymentUpgradeProgressResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetComposeDeploymentUpgradeProgress", resp, "Failure responding to request") return } return } // GetComposeDeploymentUpgradeProgressPreparer prepares the GetComposeDeploymentUpgradeProgress request. func (client BaseClient) GetComposeDeploymentUpgradeProgressPreparer(ctx context.Context, deploymentName string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "deploymentName": deploymentName, } const APIVersion = "6.0-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/ComposeDeployments/{deploymentName}/$/GetUpgradeProgress", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetComposeDeploymentUpgradeProgressSender sends the GetComposeDeploymentUpgradeProgress request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetComposeDeploymentUpgradeProgressSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetComposeDeploymentUpgradeProgressResponder handles the response to the GetComposeDeploymentUpgradeProgress request. The method always // closes the http.Response Body. func (client BaseClient) GetComposeDeploymentUpgradeProgressResponder(resp *http.Response) (result ComposeDeploymentUpgradeProgressInfo, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetContainerLogsDeployedOnNode gets the container logs for container deployed on a Service Fabric node for the given // code package. // Parameters: // nodeName - the name of the node. // applicationID - the identity of the application. This is typically the full name of the application without // the 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the application name is "fabric:/myapp/app1", the application identity would be "myapp~app1" // in 6.0+ and "myapp/app1" in previous versions. // serviceManifestName - the name of a service manifest registered as part of an application type in a Service // Fabric cluster. // codePackageName - the name of code package specified in service manifest registered as part of an // application type in a Service Fabric cluster. // tail - number of lines to show from the end of the logs. Default is 100. 'all' to show the complete logs. // previous - specifies whether to get container logs from exited/dead containers of the code package instance. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetContainerLogsDeployedOnNode(ctx context.Context, nodeName string, applicationID string, serviceManifestName string, codePackageName string, tail string, previous *bool, timeout *int64) (result ContainerLogs, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetContainerLogsDeployedOnNode") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetContainerLogsDeployedOnNode", err.Error()) } req, err := client.GetContainerLogsDeployedOnNodePreparer(ctx, nodeName, applicationID, serviceManifestName, codePackageName, tail, previous, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetContainerLogsDeployedOnNode", nil, "Failure preparing request") return } resp, err := client.GetContainerLogsDeployedOnNodeSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetContainerLogsDeployedOnNode", resp, "Failure sending request") return } result, err = client.GetContainerLogsDeployedOnNodeResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetContainerLogsDeployedOnNode", resp, "Failure responding to request") return } return } // GetContainerLogsDeployedOnNodePreparer prepares the GetContainerLogsDeployedOnNode request. func (client BaseClient) GetContainerLogsDeployedOnNodePreparer(ctx context.Context, nodeName string, applicationID string, serviceManifestName string, codePackageName string, tail string, previous *bool, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationId": applicationID, "nodeName": autorest.Encode("path", nodeName), } const APIVersion = "6.2" queryParameters := map[string]interface{}{ "api-version": APIVersion, "CodePackageName": autorest.Encode("query", codePackageName), "ServiceManifestName": autorest.Encode("query", serviceManifestName), } if len(tail) > 0 { queryParameters["Tail"] = autorest.Encode("query", tail) } if previous != nil { queryParameters["Previous"] = autorest.Encode("query", *previous) } else { queryParameters["Previous"] = autorest.Encode("query", false) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Nodes/{nodeName}/$/GetApplications/{applicationId}/$/GetCodePackages/$/ContainerLogs", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetContainerLogsDeployedOnNodeSender sends the GetContainerLogsDeployedOnNode request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetContainerLogsDeployedOnNodeSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetContainerLogsDeployedOnNodeResponder handles the response to the GetContainerLogsDeployedOnNode request. The method always // closes the http.Response Body. func (client BaseClient) GetContainerLogsDeployedOnNodeResponder(resp *http.Response) (result ContainerLogs, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetContainersEventList the response is list of ContainerInstanceEvent objects. // Parameters: // startTimeUtc - the start time of a lookup query in ISO UTC yyyy-MM-ddTHH:mm:ssZ. // endTimeUtc - the end time of a lookup query in ISO UTC yyyy-MM-ddTHH:mm:ssZ. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. // eventsTypesFilter - this is a comma separated string specifying the types of FabricEvents that should only // be included in the response. // excludeAnalysisEvents - this param disables the retrieval of AnalysisEvents if true is passed. // skipCorrelationLookup - this param disables the search of CorrelatedEvents information if true is passed. // otherwise the CorrelationEvents get processed and HasCorrelatedEvents field in every FabricEvent gets // populated. func (client BaseClient) GetContainersEventList(ctx context.Context, startTimeUtc string, endTimeUtc string, timeout *int64, eventsTypesFilter string, excludeAnalysisEvents *bool, skipCorrelationLookup *bool) (result ListContainerInstanceEvent, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetContainersEventList") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetContainersEventList", err.Error()) } req, err := client.GetContainersEventListPreparer(ctx, startTimeUtc, endTimeUtc, timeout, eventsTypesFilter, excludeAnalysisEvents, skipCorrelationLookup) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetContainersEventList", nil, "Failure preparing request") return } resp, err := client.GetContainersEventListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetContainersEventList", resp, "Failure sending request") return } result, err = client.GetContainersEventListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetContainersEventList", resp, "Failure responding to request") return } return } // GetContainersEventListPreparer prepares the GetContainersEventList request. func (client BaseClient) GetContainersEventListPreparer(ctx context.Context, startTimeUtc string, endTimeUtc string, timeout *int64, eventsTypesFilter string, excludeAnalysisEvents *bool, skipCorrelationLookup *bool) (*http.Request, error) { const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, "EndTimeUtc": autorest.Encode("query", endTimeUtc), "StartTimeUtc": autorest.Encode("query", startTimeUtc), } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } if len(eventsTypesFilter) > 0 { queryParameters["EventsTypesFilter"] = autorest.Encode("query", eventsTypesFilter) } if excludeAnalysisEvents != nil { queryParameters["ExcludeAnalysisEvents"] = autorest.Encode("query", *excludeAnalysisEvents) } if skipCorrelationLookup != nil { queryParameters["SkipCorrelationLookup"] = autorest.Encode("query", *skipCorrelationLookup) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/EventsStore/Containers/Events"), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetContainersEventListSender sends the GetContainersEventList request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetContainersEventListSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetContainersEventListResponder handles the response to the GetContainersEventList request. The method always // closes the http.Response Body. func (client BaseClient) GetContainersEventListResponder(resp *http.Response) (result ListContainerInstanceEvent, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result.Value), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetCorrelatedEventList the response is list of FabricEvents. // Parameters: // eventInstanceID - the EventInstanceId. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetCorrelatedEventList(ctx context.Context, eventInstanceID string, timeout *int64) (result ListFabricEvent, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetCorrelatedEventList") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetCorrelatedEventList", err.Error()) } req, err := client.GetCorrelatedEventListPreparer(ctx, eventInstanceID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetCorrelatedEventList", nil, "Failure preparing request") return } resp, err := client.GetCorrelatedEventListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetCorrelatedEventList", resp, "Failure sending request") return } result, err = client.GetCorrelatedEventListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetCorrelatedEventList", resp, "Failure responding to request") return } return } // GetCorrelatedEventListPreparer prepares the GetCorrelatedEventList request. func (client BaseClient) GetCorrelatedEventListPreparer(ctx context.Context, eventInstanceID string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "eventInstanceId": autorest.Encode("path", eventInstanceID), } const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/EventsStore/CorrelatedEvents/{eventInstanceId}/$/Events", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetCorrelatedEventListSender sends the GetCorrelatedEventList request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetCorrelatedEventListSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetCorrelatedEventListResponder handles the response to the GetCorrelatedEventList request. The method always // closes the http.Response Body. func (client BaseClient) GetCorrelatedEventListResponder(resp *http.Response) (result ListFabricEvent, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetDataLossProgress gets the progress of a data loss operation started with StartDataLoss, using the OperationId. // Parameters: // serviceID - the identity of the service. This is typically the full name of the service without the // 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the service name is "fabric:/myapp/app1/svc1", the service identity would be // "myapp~app1~svc1" in 6.0+ and "myapp/app1/svc1" in previous versions. // partitionID - the identity of the partition. // operationID - a GUID that identifies a call of this API. This is passed into the corresponding GetProgress // API // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetDataLossProgress(ctx context.Context, serviceID string, partitionID uuid.UUID, operationID uuid.UUID, timeout *int64) (result PartitionDataLossProgress, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetDataLossProgress") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetDataLossProgress", err.Error()) } req, err := client.GetDataLossProgressPreparer(ctx, serviceID, partitionID, operationID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDataLossProgress", nil, "Failure preparing request") return } resp, err := client.GetDataLossProgressSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDataLossProgress", resp, "Failure sending request") return } result, err = client.GetDataLossProgressResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDataLossProgress", resp, "Failure responding to request") return } return } // GetDataLossProgressPreparer prepares the GetDataLossProgress request. func (client BaseClient) GetDataLossProgressPreparer(ctx context.Context, serviceID string, partitionID uuid.UUID, operationID uuid.UUID, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "partitionId": partitionID, "serviceId": serviceID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, "OperationId": autorest.Encode("query", operationID), } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Faults/Services/{serviceId}/$/GetPartitions/{partitionId}/$/GetDataLossProgress", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetDataLossProgressSender sends the GetDataLossProgress request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetDataLossProgressSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetDataLossProgressResponder handles the response to the GetDataLossProgress request. The method always // closes the http.Response Body. func (client BaseClient) GetDataLossProgressResponder(resp *http.Response) (result PartitionDataLossProgress, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetDeployedApplicationHealth gets the information about health of an application deployed on a Service Fabric node. // Use EventsHealthStateFilter to optionally filter for the collection of HealthEvent objects reported on the deployed // application based on health state. Use DeployedServicePackagesHealthStateFilter to optionally filter for // DeployedServicePackageHealth children based on health state. // Parameters: // nodeName - the name of the node. // applicationID - the identity of the application. This is typically the full name of the application without // the 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the application name is "fabric:/myapp/app1", the application identity would be "myapp~app1" // in 6.0+ and "myapp/app1" in previous versions. // eventsHealthStateFilter - allows filtering the collection of HealthEvent objects returned based on health // state. // The possible values for this parameter include integer value of one of the following health states. // Only events that match the filter are returned. All events are used to evaluate the aggregated health state. // If not specified, all entries are returned. The state values are flag based enumeration, so the value could // be a combination of these value obtained using bitwise 'OR' operator. For example, If the provided value is // 6 then all of the events with HealthState value of OK (2) and Warning (4) are returned. // // - Default - Default value. Matches any HealthState. The value is zero. // - None - Filter that doesn't match any HealthState value. Used in order to return no results on a given // collection of states. The value is 1. // - Ok - Filter that matches input with HealthState value Ok. The value is 2. // - Warning - Filter that matches input with HealthState value Warning. The value is 4. // - Error - Filter that matches input with HealthState value Error. The value is 8. // - All - Filter that matches input with any HealthState value. The value is 65535. // deployedServicePackagesHealthStateFilter - allows filtering of the deployed service package health state // objects returned in the result of deployed application health query based on their health state. // The possible values for this parameter include integer value of one of the following health states. // Only deployed service packages that match the filter are returned. All deployed service packages are used to // evaluate the aggregated health state of the deployed application. // If not specified, all entries are returned. // The state values are flag based enumeration, so the value can be a combination of these value obtained using // bitwise 'OR' operator. // For example, if the provided value is 6 then health state of service packages with HealthState value of OK // (2) and Warning (4) are returned. // // - Default - Default value. Matches any HealthState. The value is zero. // - None - Filter that doesn't match any HealthState value. Used in order to return no results on a given // collection of states. The value is 1. // - Ok - Filter that matches input with HealthState value Ok. The value is 2. // - Warning - Filter that matches input with HealthState value Warning. The value is 4. // - Error - Filter that matches input with HealthState value Error. The value is 8. // - All - Filter that matches input with any HealthState value. The value is 65535. // excludeHealthStatistics - indicates whether the health statistics should be returned as part of the query // result. False by default. // The statistics show the number of children entities in health state Ok, Warning, and Error. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetDeployedApplicationHealth(ctx context.Context, nodeName string, applicationID string, eventsHealthStateFilter *int32, deployedServicePackagesHealthStateFilter *int32, excludeHealthStatistics *bool, timeout *int64) (result DeployedApplicationHealth, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetDeployedApplicationHealth") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetDeployedApplicationHealth", err.Error()) } req, err := client.GetDeployedApplicationHealthPreparer(ctx, nodeName, applicationID, eventsHealthStateFilter, deployedServicePackagesHealthStateFilter, excludeHealthStatistics, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedApplicationHealth", nil, "Failure preparing request") return } resp, err := client.GetDeployedApplicationHealthSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedApplicationHealth", resp, "Failure sending request") return } result, err = client.GetDeployedApplicationHealthResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedApplicationHealth", resp, "Failure responding to request") return } return } // GetDeployedApplicationHealthPreparer prepares the GetDeployedApplicationHealth request. func (client BaseClient) GetDeployedApplicationHealthPreparer(ctx context.Context, nodeName string, applicationID string, eventsHealthStateFilter *int32, deployedServicePackagesHealthStateFilter *int32, excludeHealthStatistics *bool, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationId": applicationID, "nodeName": autorest.Encode("path", nodeName), } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if eventsHealthStateFilter != nil { queryParameters["EventsHealthStateFilter"] = autorest.Encode("query", *eventsHealthStateFilter) } else { queryParameters["EventsHealthStateFilter"] = autorest.Encode("query", 0) } if deployedServicePackagesHealthStateFilter != nil { queryParameters["DeployedServicePackagesHealthStateFilter"] = autorest.Encode("query", *deployedServicePackagesHealthStateFilter) } else { queryParameters["DeployedServicePackagesHealthStateFilter"] = autorest.Encode("query", 0) } if excludeHealthStatistics != nil { queryParameters["ExcludeHealthStatistics"] = autorest.Encode("query", *excludeHealthStatistics) } else { queryParameters["ExcludeHealthStatistics"] = autorest.Encode("query", false) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Nodes/{nodeName}/$/GetApplications/{applicationId}/$/GetHealth", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetDeployedApplicationHealthSender sends the GetDeployedApplicationHealth request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetDeployedApplicationHealthSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetDeployedApplicationHealthResponder handles the response to the GetDeployedApplicationHealth request. The method always // closes the http.Response Body. func (client BaseClient) GetDeployedApplicationHealthResponder(resp *http.Response) (result DeployedApplicationHealth, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetDeployedApplicationHealthUsingPolicy gets the information about health of an application deployed on a Service // Fabric node using the specified policy. Use EventsHealthStateFilter to optionally filter for the collection of // HealthEvent objects reported on the deployed application based on health state. Use // DeployedServicePackagesHealthStateFilter to optionally filter for DeployedServicePackageHealth children based on // health state. Use ApplicationHealthPolicy to optionally override the health policies used to evaluate the health. // This API only uses 'ConsiderWarningAsError' field of the ApplicationHealthPolicy. The rest of the fields are ignored // while evaluating the health of the deployed application. // Parameters: // nodeName - the name of the node. // applicationID - the identity of the application. This is typically the full name of the application without // the 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the application name is "fabric:/myapp/app1", the application identity would be "myapp~app1" // in 6.0+ and "myapp/app1" in previous versions. // eventsHealthStateFilter - allows filtering the collection of HealthEvent objects returned based on health // state. // The possible values for this parameter include integer value of one of the following health states. // Only events that match the filter are returned. All events are used to evaluate the aggregated health state. // If not specified, all entries are returned. The state values are flag based enumeration, so the value could // be a combination of these value obtained using bitwise 'OR' operator. For example, If the provided value is // 6 then all of the events with HealthState value of OK (2) and Warning (4) are returned. // // - Default - Default value. Matches any HealthState. The value is zero. // - None - Filter that doesn't match any HealthState value. Used in order to return no results on a given // collection of states. The value is 1. // - Ok - Filter that matches input with HealthState value Ok. The value is 2. // - Warning - Filter that matches input with HealthState value Warning. The value is 4. // - Error - Filter that matches input with HealthState value Error. The value is 8. // - All - Filter that matches input with any HealthState value. The value is 65535. // deployedServicePackagesHealthStateFilter - allows filtering of the deployed service package health state // objects returned in the result of deployed application health query based on their health state. // The possible values for this parameter include integer value of one of the following health states. // Only deployed service packages that match the filter are returned. All deployed service packages are used to // evaluate the aggregated health state of the deployed application. // If not specified, all entries are returned. // The state values are flag based enumeration, so the value can be a combination of these value obtained using // bitwise 'OR' operator. // For example, if the provided value is 6 then health state of service packages with HealthState value of OK // (2) and Warning (4) are returned. // // - Default - Default value. Matches any HealthState. The value is zero. // - None - Filter that doesn't match any HealthState value. Used in order to return no results on a given // collection of states. The value is 1. // - Ok - Filter that matches input with HealthState value Ok. The value is 2. // - Warning - Filter that matches input with HealthState value Warning. The value is 4. // - Error - Filter that matches input with HealthState value Error. The value is 8. // - All - Filter that matches input with any HealthState value. The value is 65535. // applicationHealthPolicy - describes the health policies used to evaluate the health of an application or one // of its children. // If not present, the health evaluation uses the health policy from application manifest or the default health // policy. // excludeHealthStatistics - indicates whether the health statistics should be returned as part of the query // result. False by default. // The statistics show the number of children entities in health state Ok, Warning, and Error. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetDeployedApplicationHealthUsingPolicy(ctx context.Context, nodeName string, applicationID string, eventsHealthStateFilter *int32, deployedServicePackagesHealthStateFilter *int32, applicationHealthPolicy *ApplicationHealthPolicy, excludeHealthStatistics *bool, timeout *int64) (result DeployedApplicationHealth, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetDeployedApplicationHealthUsingPolicy") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetDeployedApplicationHealthUsingPolicy", err.Error()) } req, err := client.GetDeployedApplicationHealthUsingPolicyPreparer(ctx, nodeName, applicationID, eventsHealthStateFilter, deployedServicePackagesHealthStateFilter, applicationHealthPolicy, excludeHealthStatistics, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedApplicationHealthUsingPolicy", nil, "Failure preparing request") return } resp, err := client.GetDeployedApplicationHealthUsingPolicySender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedApplicationHealthUsingPolicy", resp, "Failure sending request") return } result, err = client.GetDeployedApplicationHealthUsingPolicyResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedApplicationHealthUsingPolicy", resp, "Failure responding to request") return } return } // GetDeployedApplicationHealthUsingPolicyPreparer prepares the GetDeployedApplicationHealthUsingPolicy request. func (client BaseClient) GetDeployedApplicationHealthUsingPolicyPreparer(ctx context.Context, nodeName string, applicationID string, eventsHealthStateFilter *int32, deployedServicePackagesHealthStateFilter *int32, applicationHealthPolicy *ApplicationHealthPolicy, excludeHealthStatistics *bool, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationId": applicationID, "nodeName": autorest.Encode("path", nodeName), } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if eventsHealthStateFilter != nil { queryParameters["EventsHealthStateFilter"] = autorest.Encode("query", *eventsHealthStateFilter) } else { queryParameters["EventsHealthStateFilter"] = autorest.Encode("query", 0) } if deployedServicePackagesHealthStateFilter != nil { queryParameters["DeployedServicePackagesHealthStateFilter"] = autorest.Encode("query", *deployedServicePackagesHealthStateFilter) } else { queryParameters["DeployedServicePackagesHealthStateFilter"] = autorest.Encode("query", 0) } if excludeHealthStatistics != nil { queryParameters["ExcludeHealthStatistics"] = autorest.Encode("query", *excludeHealthStatistics) } else { queryParameters["ExcludeHealthStatistics"] = autorest.Encode("query", false) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Nodes/{nodeName}/$/GetApplications/{applicationId}/$/GetHealth", pathParameters), autorest.WithQueryParameters(queryParameters)) if applicationHealthPolicy != nil { preparer = autorest.DecoratePreparer(preparer, autorest.WithJSON(applicationHealthPolicy)) } return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetDeployedApplicationHealthUsingPolicySender sends the GetDeployedApplicationHealthUsingPolicy request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetDeployedApplicationHealthUsingPolicySender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetDeployedApplicationHealthUsingPolicyResponder handles the response to the GetDeployedApplicationHealthUsingPolicy request. The method always // closes the http.Response Body. func (client BaseClient) GetDeployedApplicationHealthUsingPolicyResponder(resp *http.Response) (result DeployedApplicationHealth, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetDeployedApplicationInfo gets the information about an application deployed on a Service Fabric node. This query // returns system application information if the application ID provided is for system application. Results encompass // deployed applications in active, activating, and downloading states. This query requires that the node name // corresponds to a node on the cluster. The query fails if the provided node name does not point to any active Service // Fabric nodes on the cluster. // Parameters: // nodeName - the name of the node. // applicationID - the identity of the application. This is typically the full name of the application without // the 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the application name is "fabric:/myapp/app1", the application identity would be "myapp~app1" // in 6.0+ and "myapp/app1" in previous versions. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. // includeHealthState - include the health state of an entity. // If this parameter is false or not specified, then the health state returned is "Unknown". // When set to true, the query goes in parallel to the node and the health system service before the results // are merged. // As a result, the query is more expensive and may take a longer time. func (client BaseClient) GetDeployedApplicationInfo(ctx context.Context, nodeName string, applicationID string, timeout *int64, includeHealthState *bool) (result DeployedApplicationInfo, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetDeployedApplicationInfo") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetDeployedApplicationInfo", err.Error()) } req, err := client.GetDeployedApplicationInfoPreparer(ctx, nodeName, applicationID, timeout, includeHealthState) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedApplicationInfo", nil, "Failure preparing request") return } resp, err := client.GetDeployedApplicationInfoSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedApplicationInfo", resp, "Failure sending request") return } result, err = client.GetDeployedApplicationInfoResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedApplicationInfo", resp, "Failure responding to request") return } return } // GetDeployedApplicationInfoPreparer prepares the GetDeployedApplicationInfo request. func (client BaseClient) GetDeployedApplicationInfoPreparer(ctx context.Context, nodeName string, applicationID string, timeout *int64, includeHealthState *bool) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationId": applicationID, "nodeName": autorest.Encode("path", nodeName), } const APIVersion = "6.1" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } if includeHealthState != nil { queryParameters["IncludeHealthState"] = autorest.Encode("query", *includeHealthState) } else { queryParameters["IncludeHealthState"] = autorest.Encode("query", false) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Nodes/{nodeName}/$/GetApplications/{applicationId}", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetDeployedApplicationInfoSender sends the GetDeployedApplicationInfo request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetDeployedApplicationInfoSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetDeployedApplicationInfoResponder handles the response to the GetDeployedApplicationInfo request. The method always // closes the http.Response Body. func (client BaseClient) GetDeployedApplicationInfoResponder(resp *http.Response) (result DeployedApplicationInfo, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusNoContent), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetDeployedApplicationInfoList gets the list of applications deployed on a Service Fabric node. The results do not // include information about deployed system applications unless explicitly queried for by ID. Results encompass // deployed applications in active, activating, and downloading states. This query requires that the node name // corresponds to a node on the cluster. The query fails if the provided node name does not point to any active Service // Fabric nodes on the cluster. // Parameters: // nodeName - the name of the node. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. // includeHealthState - include the health state of an entity. // If this parameter is false or not specified, then the health state returned is "Unknown". // When set to true, the query goes in parallel to the node and the health system service before the results // are merged. // As a result, the query is more expensive and may take a longer time. // continuationToken - the continuation token parameter is used to obtain next set of results. A continuation // token with a non empty value is included in the response of the API when the results from the system do not // fit in a single response. When this value is passed to the next API call, the API returns next set of // results. If there are no further results then the continuation token does not contain a value. The value of // this parameter should not be URL encoded. // maxResults - the maximum number of results to be returned as part of the paged queries. This parameter // defines the upper bound on the number of results returned. The results returned can be less than the // specified maximum results if they do not fit in the message as per the max message size restrictions defined // in the configuration. If this parameter is zero or not specified, the paged queries includes as many results // as possible that fit in the return message. func (client BaseClient) GetDeployedApplicationInfoList(ctx context.Context, nodeName string, timeout *int64, includeHealthState *bool, continuationToken string, maxResults *int64) (result PagedDeployedApplicationInfoList, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetDeployedApplicationInfoList") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}, {TargetValue: maxResults, Constraints: []validation.Constraint{{Target: "maxResults", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "maxResults", Name: validation.InclusiveMinimum, Rule: int64(0), Chain: nil}}}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetDeployedApplicationInfoList", err.Error()) } req, err := client.GetDeployedApplicationInfoListPreparer(ctx, nodeName, timeout, includeHealthState, continuationToken, maxResults) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedApplicationInfoList", nil, "Failure preparing request") return } resp, err := client.GetDeployedApplicationInfoListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedApplicationInfoList", resp, "Failure sending request") return } result, err = client.GetDeployedApplicationInfoListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedApplicationInfoList", resp, "Failure responding to request") return } return } // GetDeployedApplicationInfoListPreparer prepares the GetDeployedApplicationInfoList request. func (client BaseClient) GetDeployedApplicationInfoListPreparer(ctx context.Context, nodeName string, timeout *int64, includeHealthState *bool, continuationToken string, maxResults *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "nodeName": autorest.Encode("path", nodeName), } const APIVersion = "6.1" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } if includeHealthState != nil { queryParameters["IncludeHealthState"] = autorest.Encode("query", *includeHealthState) } else { queryParameters["IncludeHealthState"] = autorest.Encode("query", false) } if len(continuationToken) > 0 { queryParameters["ContinuationToken"] = continuationToken } if maxResults != nil { queryParameters["MaxResults"] = autorest.Encode("query", *maxResults) } else { queryParameters["MaxResults"] = autorest.Encode("query", 0) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Nodes/{nodeName}/$/GetApplications", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetDeployedApplicationInfoListSender sends the GetDeployedApplicationInfoList request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetDeployedApplicationInfoListSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetDeployedApplicationInfoListResponder handles the response to the GetDeployedApplicationInfoList request. The method always // closes the http.Response Body. func (client BaseClient) GetDeployedApplicationInfoListResponder(resp *http.Response) (result PagedDeployedApplicationInfoList, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetDeployedCodePackageInfoList gets the list of code packages deployed on a Service Fabric node for the given // application. // Parameters: // nodeName - the name of the node. // applicationID - the identity of the application. This is typically the full name of the application without // the 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the application name is "fabric:/myapp/app1", the application identity would be "myapp~app1" // in 6.0+ and "myapp/app1" in previous versions. // serviceManifestName - the name of a service manifest registered as part of an application type in a Service // Fabric cluster. // codePackageName - the name of code package specified in service manifest registered as part of an // application type in a Service Fabric cluster. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetDeployedCodePackageInfoList(ctx context.Context, nodeName string, applicationID string, serviceManifestName string, codePackageName string, timeout *int64) (result ListDeployedCodePackageInfo, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetDeployedCodePackageInfoList") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetDeployedCodePackageInfoList", err.Error()) } req, err := client.GetDeployedCodePackageInfoListPreparer(ctx, nodeName, applicationID, serviceManifestName, codePackageName, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedCodePackageInfoList", nil, "Failure preparing request") return } resp, err := client.GetDeployedCodePackageInfoListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedCodePackageInfoList", resp, "Failure sending request") return } result, err = client.GetDeployedCodePackageInfoListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedCodePackageInfoList", resp, "Failure responding to request") return } return } // GetDeployedCodePackageInfoListPreparer prepares the GetDeployedCodePackageInfoList request. func (client BaseClient) GetDeployedCodePackageInfoListPreparer(ctx context.Context, nodeName string, applicationID string, serviceManifestName string, codePackageName string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationId": applicationID, "nodeName": autorest.Encode("path", nodeName), } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if len(serviceManifestName) > 0 { queryParameters["ServiceManifestName"] = autorest.Encode("query", serviceManifestName) } if len(codePackageName) > 0 { queryParameters["CodePackageName"] = autorest.Encode("query", codePackageName) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Nodes/{nodeName}/$/GetApplications/{applicationId}/$/GetCodePackages", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetDeployedCodePackageInfoListSender sends the GetDeployedCodePackageInfoList request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetDeployedCodePackageInfoListSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetDeployedCodePackageInfoListResponder handles the response to the GetDeployedCodePackageInfoList request. The method always // closes the http.Response Body. func (client BaseClient) GetDeployedCodePackageInfoListResponder(resp *http.Response) (result ListDeployedCodePackageInfo, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result.Value), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetDeployedServicePackageHealth gets the information about health of service package for a specific application // deployed on a Service Fabric node. Use EventsHealthStateFilter to optionally filter for the collection of // HealthEvent objects reported on the deployed service package based on health state. // Parameters: // nodeName - the name of the node. // applicationID - the identity of the application. This is typically the full name of the application without // the 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the application name is "fabric:/myapp/app1", the application identity would be "myapp~app1" // in 6.0+ and "myapp/app1" in previous versions. // servicePackageName - the name of the service package. // eventsHealthStateFilter - allows filtering the collection of HealthEvent objects returned based on health // state. // The possible values for this parameter include integer value of one of the following health states. // Only events that match the filter are returned. All events are used to evaluate the aggregated health state. // If not specified, all entries are returned. The state values are flag based enumeration, so the value could // be a combination of these value obtained using bitwise 'OR' operator. For example, If the provided value is // 6 then all of the events with HealthState value of OK (2) and Warning (4) are returned. // // - Default - Default value. Matches any HealthState. The value is zero. // - None - Filter that doesn't match any HealthState value. Used in order to return no results on a given // collection of states. The value is 1. // - Ok - Filter that matches input with HealthState value Ok. The value is 2. // - Warning - Filter that matches input with HealthState value Warning. The value is 4. // - Error - Filter that matches input with HealthState value Error. The value is 8. // - All - Filter that matches input with any HealthState value. The value is 65535. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetDeployedServicePackageHealth(ctx context.Context, nodeName string, applicationID string, servicePackageName string, eventsHealthStateFilter *int32, timeout *int64) (result DeployedServicePackageHealth, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetDeployedServicePackageHealth") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetDeployedServicePackageHealth", err.Error()) } req, err := client.GetDeployedServicePackageHealthPreparer(ctx, nodeName, applicationID, servicePackageName, eventsHealthStateFilter, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedServicePackageHealth", nil, "Failure preparing request") return } resp, err := client.GetDeployedServicePackageHealthSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedServicePackageHealth", resp, "Failure sending request") return } result, err = client.GetDeployedServicePackageHealthResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedServicePackageHealth", resp, "Failure responding to request") return } return } // GetDeployedServicePackageHealthPreparer prepares the GetDeployedServicePackageHealth request. func (client BaseClient) GetDeployedServicePackageHealthPreparer(ctx context.Context, nodeName string, applicationID string, servicePackageName string, eventsHealthStateFilter *int32, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationId": applicationID, "nodeName": autorest.Encode("path", nodeName), "servicePackageName": servicePackageName, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if eventsHealthStateFilter != nil { queryParameters["EventsHealthStateFilter"] = autorest.Encode("query", *eventsHealthStateFilter) } else { queryParameters["EventsHealthStateFilter"] = autorest.Encode("query", 0) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Nodes/{nodeName}/$/GetApplications/{applicationId}/$/GetServicePackages/{servicePackageName}/$/GetHealth", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetDeployedServicePackageHealthSender sends the GetDeployedServicePackageHealth request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetDeployedServicePackageHealthSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetDeployedServicePackageHealthResponder handles the response to the GetDeployedServicePackageHealth request. The method always // closes the http.Response Body. func (client BaseClient) GetDeployedServicePackageHealthResponder(resp *http.Response) (result DeployedServicePackageHealth, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetDeployedServicePackageHealthUsingPolicy gets the information about health of an service package for a specific // application deployed on a Service Fabric node. using the specified policy. Use EventsHealthStateFilter to optionally // filter for the collection of HealthEvent objects reported on the deployed service package based on health state. Use // ApplicationHealthPolicy to optionally override the health policies used to evaluate the health. This API only uses // 'ConsiderWarningAsError' field of the ApplicationHealthPolicy. The rest of the fields are ignored while evaluating // the health of the deployed service package. // Parameters: // nodeName - the name of the node. // applicationID - the identity of the application. This is typically the full name of the application without // the 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the application name is "fabric:/myapp/app1", the application identity would be "myapp~app1" // in 6.0+ and "myapp/app1" in previous versions. // servicePackageName - the name of the service package. // eventsHealthStateFilter - allows filtering the collection of HealthEvent objects returned based on health // state. // The possible values for this parameter include integer value of one of the following health states. // Only events that match the filter are returned. All events are used to evaluate the aggregated health state. // If not specified, all entries are returned. The state values are flag based enumeration, so the value could // be a combination of these value obtained using bitwise 'OR' operator. For example, If the provided value is // 6 then all of the events with HealthState value of OK (2) and Warning (4) are returned. // // - Default - Default value. Matches any HealthState. The value is zero. // - None - Filter that doesn't match any HealthState value. Used in order to return no results on a given // collection of states. The value is 1. // - Ok - Filter that matches input with HealthState value Ok. The value is 2. // - Warning - Filter that matches input with HealthState value Warning. The value is 4. // - Error - Filter that matches input with HealthState value Error. The value is 8. // - All - Filter that matches input with any HealthState value. The value is 65535. // applicationHealthPolicy - describes the health policies used to evaluate the health of an application or one // of its children. // If not present, the health evaluation uses the health policy from application manifest or the default health // policy. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetDeployedServicePackageHealthUsingPolicy(ctx context.Context, nodeName string, applicationID string, servicePackageName string, eventsHealthStateFilter *int32, applicationHealthPolicy *ApplicationHealthPolicy, timeout *int64) (result DeployedServicePackageHealth, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetDeployedServicePackageHealthUsingPolicy") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetDeployedServicePackageHealthUsingPolicy", err.Error()) } req, err := client.GetDeployedServicePackageHealthUsingPolicyPreparer(ctx, nodeName, applicationID, servicePackageName, eventsHealthStateFilter, applicationHealthPolicy, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedServicePackageHealthUsingPolicy", nil, "Failure preparing request") return } resp, err := client.GetDeployedServicePackageHealthUsingPolicySender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedServicePackageHealthUsingPolicy", resp, "Failure sending request") return } result, err = client.GetDeployedServicePackageHealthUsingPolicyResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedServicePackageHealthUsingPolicy", resp, "Failure responding to request") return } return } // GetDeployedServicePackageHealthUsingPolicyPreparer prepares the GetDeployedServicePackageHealthUsingPolicy request. func (client BaseClient) GetDeployedServicePackageHealthUsingPolicyPreparer(ctx context.Context, nodeName string, applicationID string, servicePackageName string, eventsHealthStateFilter *int32, applicationHealthPolicy *ApplicationHealthPolicy, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationId": applicationID, "nodeName": autorest.Encode("path", nodeName), "servicePackageName": servicePackageName, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if eventsHealthStateFilter != nil { queryParameters["EventsHealthStateFilter"] = autorest.Encode("query", *eventsHealthStateFilter) } else { queryParameters["EventsHealthStateFilter"] = autorest.Encode("query", 0) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Nodes/{nodeName}/$/GetApplications/{applicationId}/$/GetServicePackages/{servicePackageName}/$/GetHealth", pathParameters), autorest.WithQueryParameters(queryParameters)) if applicationHealthPolicy != nil { preparer = autorest.DecoratePreparer(preparer, autorest.WithJSON(applicationHealthPolicy)) } return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetDeployedServicePackageHealthUsingPolicySender sends the GetDeployedServicePackageHealthUsingPolicy request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetDeployedServicePackageHealthUsingPolicySender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetDeployedServicePackageHealthUsingPolicyResponder handles the response to the GetDeployedServicePackageHealthUsingPolicy request. The method always // closes the http.Response Body. func (client BaseClient) GetDeployedServicePackageHealthUsingPolicyResponder(resp *http.Response) (result DeployedServicePackageHealth, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetDeployedServicePackageInfoList returns the information about the service packages deployed on a Service Fabric // node for the given application. // Parameters: // nodeName - the name of the node. // applicationID - the identity of the application. This is typically the full name of the application without // the 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the application name is "fabric:/myapp/app1", the application identity would be "myapp~app1" // in 6.0+ and "myapp/app1" in previous versions. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetDeployedServicePackageInfoList(ctx context.Context, nodeName string, applicationID string, timeout *int64) (result ListDeployedServicePackageInfo, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetDeployedServicePackageInfoList") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetDeployedServicePackageInfoList", err.Error()) } req, err := client.GetDeployedServicePackageInfoListPreparer(ctx, nodeName, applicationID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedServicePackageInfoList", nil, "Failure preparing request") return } resp, err := client.GetDeployedServicePackageInfoListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedServicePackageInfoList", resp, "Failure sending request") return } result, err = client.GetDeployedServicePackageInfoListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedServicePackageInfoList", resp, "Failure responding to request") return } return } // GetDeployedServicePackageInfoListPreparer prepares the GetDeployedServicePackageInfoList request. func (client BaseClient) GetDeployedServicePackageInfoListPreparer(ctx context.Context, nodeName string, applicationID string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationId": applicationID, "nodeName": autorest.Encode("path", nodeName), } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Nodes/{nodeName}/$/GetApplications/{applicationId}/$/GetServicePackages", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetDeployedServicePackageInfoListSender sends the GetDeployedServicePackageInfoList request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetDeployedServicePackageInfoListSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetDeployedServicePackageInfoListResponder handles the response to the GetDeployedServicePackageInfoList request. The method always // closes the http.Response Body. func (client BaseClient) GetDeployedServicePackageInfoListResponder(resp *http.Response) (result ListDeployedServicePackageInfo, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result.Value), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetDeployedServicePackageInfoListByName returns the information about the service packages deployed on a Service // Fabric node for the given application. These results are of service packages whose name match exactly the service // package name specified as the parameter. // Parameters: // nodeName - the name of the node. // applicationID - the identity of the application. This is typically the full name of the application without // the 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the application name is "fabric:/myapp/app1", the application identity would be "myapp~app1" // in 6.0+ and "myapp/app1" in previous versions. // servicePackageName - the name of the service package. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetDeployedServicePackageInfoListByName(ctx context.Context, nodeName string, applicationID string, servicePackageName string, timeout *int64) (result ListDeployedServicePackageInfo, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetDeployedServicePackageInfoListByName") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetDeployedServicePackageInfoListByName", err.Error()) } req, err := client.GetDeployedServicePackageInfoListByNamePreparer(ctx, nodeName, applicationID, servicePackageName, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedServicePackageInfoListByName", nil, "Failure preparing request") return } resp, err := client.GetDeployedServicePackageInfoListByNameSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedServicePackageInfoListByName", resp, "Failure sending request") return } result, err = client.GetDeployedServicePackageInfoListByNameResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedServicePackageInfoListByName", resp, "Failure responding to request") return } return } // GetDeployedServicePackageInfoListByNamePreparer prepares the GetDeployedServicePackageInfoListByName request. func (client BaseClient) GetDeployedServicePackageInfoListByNamePreparer(ctx context.Context, nodeName string, applicationID string, servicePackageName string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationId": applicationID, "nodeName": autorest.Encode("path", nodeName), "servicePackageName": servicePackageName, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Nodes/{nodeName}/$/GetApplications/{applicationId}/$/GetServicePackages/{servicePackageName}", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetDeployedServicePackageInfoListByNameSender sends the GetDeployedServicePackageInfoListByName request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetDeployedServicePackageInfoListByNameSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetDeployedServicePackageInfoListByNameResponder handles the response to the GetDeployedServicePackageInfoListByName request. The method always // closes the http.Response Body. func (client BaseClient) GetDeployedServicePackageInfoListByNameResponder(resp *http.Response) (result ListDeployedServicePackageInfo, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusNoContent), autorest.ByUnmarshallingJSON(&result.Value), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetDeployedServiceReplicaDetailInfo gets the details of the replica deployed on a Service Fabric node. The // information include service kind, service name, current service operation, current service operation start date // time, partition ID, replica/instance ID, reported load, and other information. // Parameters: // nodeName - the name of the node. // partitionID - the identity of the partition. // replicaID - the identifier of the replica. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetDeployedServiceReplicaDetailInfo(ctx context.Context, nodeName string, partitionID uuid.UUID, replicaID string, timeout *int64) (result DeployedServiceReplicaDetailInfoModel, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetDeployedServiceReplicaDetailInfo") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetDeployedServiceReplicaDetailInfo", err.Error()) } req, err := client.GetDeployedServiceReplicaDetailInfoPreparer(ctx, nodeName, partitionID, replicaID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedServiceReplicaDetailInfo", nil, "Failure preparing request") return } resp, err := client.GetDeployedServiceReplicaDetailInfoSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedServiceReplicaDetailInfo", resp, "Failure sending request") return } result, err = client.GetDeployedServiceReplicaDetailInfoResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedServiceReplicaDetailInfo", resp, "Failure responding to request") return } return } // GetDeployedServiceReplicaDetailInfoPreparer prepares the GetDeployedServiceReplicaDetailInfo request. func (client BaseClient) GetDeployedServiceReplicaDetailInfoPreparer(ctx context.Context, nodeName string, partitionID uuid.UUID, replicaID string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "nodeName": autorest.Encode("path", nodeName), "partitionId": partitionID, "replicaId": replicaID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Nodes/{nodeName}/$/GetPartitions/{partitionId}/$/GetReplicas/{replicaId}/$/GetDetail", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetDeployedServiceReplicaDetailInfoSender sends the GetDeployedServiceReplicaDetailInfo request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetDeployedServiceReplicaDetailInfoSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetDeployedServiceReplicaDetailInfoResponder handles the response to the GetDeployedServiceReplicaDetailInfo request. The method always // closes the http.Response Body. func (client BaseClient) GetDeployedServiceReplicaDetailInfoResponder(resp *http.Response) (result DeployedServiceReplicaDetailInfoModel, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetDeployedServiceReplicaDetailInfoByPartitionID gets the details of the replica deployed on a Service Fabric node. // The information include service kind, service name, current service operation, current service operation start date // time, partition ID, replica/instance ID, reported load, and other information. // Parameters: // nodeName - the name of the node. // partitionID - the identity of the partition. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetDeployedServiceReplicaDetailInfoByPartitionID(ctx context.Context, nodeName string, partitionID uuid.UUID, timeout *int64) (result DeployedServiceReplicaDetailInfoModel, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetDeployedServiceReplicaDetailInfoByPartitionID") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetDeployedServiceReplicaDetailInfoByPartitionID", err.Error()) } req, err := client.GetDeployedServiceReplicaDetailInfoByPartitionIDPreparer(ctx, nodeName, partitionID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedServiceReplicaDetailInfoByPartitionID", nil, "Failure preparing request") return } resp, err := client.GetDeployedServiceReplicaDetailInfoByPartitionIDSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedServiceReplicaDetailInfoByPartitionID", resp, "Failure sending request") return } result, err = client.GetDeployedServiceReplicaDetailInfoByPartitionIDResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedServiceReplicaDetailInfoByPartitionID", resp, "Failure responding to request") return } return } // GetDeployedServiceReplicaDetailInfoByPartitionIDPreparer prepares the GetDeployedServiceReplicaDetailInfoByPartitionID request. func (client BaseClient) GetDeployedServiceReplicaDetailInfoByPartitionIDPreparer(ctx context.Context, nodeName string, partitionID uuid.UUID, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "nodeName": autorest.Encode("path", nodeName), "partitionId": partitionID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Nodes/{nodeName}/$/GetPartitions/{partitionId}/$/GetReplicas", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetDeployedServiceReplicaDetailInfoByPartitionIDSender sends the GetDeployedServiceReplicaDetailInfoByPartitionID request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetDeployedServiceReplicaDetailInfoByPartitionIDSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetDeployedServiceReplicaDetailInfoByPartitionIDResponder handles the response to the GetDeployedServiceReplicaDetailInfoByPartitionID request. The method always // closes the http.Response Body. func (client BaseClient) GetDeployedServiceReplicaDetailInfoByPartitionIDResponder(resp *http.Response) (result DeployedServiceReplicaDetailInfoModel, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetDeployedServiceReplicaInfoList gets the list containing the information about replicas deployed on a Service // Fabric node. The information include partition ID, replica ID, status of the replica, name of the service, name of // the service type, and other information. Use PartitionId or ServiceManifestName query parameters to return // information about the deployed replicas matching the specified values for those parameters. // Parameters: // nodeName - the name of the node. // applicationID - the identity of the application. This is typically the full name of the application without // the 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the application name is "fabric:/myapp/app1", the application identity would be "myapp~app1" // in 6.0+ and "myapp/app1" in previous versions. // partitionID - the identity of the partition. // serviceManifestName - the name of a service manifest registered as part of an application type in a Service // Fabric cluster. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetDeployedServiceReplicaInfoList(ctx context.Context, nodeName string, applicationID string, partitionID *uuid.UUID, serviceManifestName string, timeout *int64) (result ListDeployedServiceReplicaInfo, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetDeployedServiceReplicaInfoList") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetDeployedServiceReplicaInfoList", err.Error()) } req, err := client.GetDeployedServiceReplicaInfoListPreparer(ctx, nodeName, applicationID, partitionID, serviceManifestName, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedServiceReplicaInfoList", nil, "Failure preparing request") return } resp, err := client.GetDeployedServiceReplicaInfoListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedServiceReplicaInfoList", resp, "Failure sending request") return } result, err = client.GetDeployedServiceReplicaInfoListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedServiceReplicaInfoList", resp, "Failure responding to request") return } return } // GetDeployedServiceReplicaInfoListPreparer prepares the GetDeployedServiceReplicaInfoList request. func (client BaseClient) GetDeployedServiceReplicaInfoListPreparer(ctx context.Context, nodeName string, applicationID string, partitionID *uuid.UUID, serviceManifestName string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationId": applicationID, "nodeName": autorest.Encode("path", nodeName), } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if partitionID != nil { queryParameters["PartitionId"] = autorest.Encode("query", *partitionID) } if len(serviceManifestName) > 0 { queryParameters["ServiceManifestName"] = autorest.Encode("query", serviceManifestName) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Nodes/{nodeName}/$/GetApplications/{applicationId}/$/GetReplicas", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetDeployedServiceReplicaInfoListSender sends the GetDeployedServiceReplicaInfoList request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetDeployedServiceReplicaInfoListSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetDeployedServiceReplicaInfoListResponder handles the response to the GetDeployedServiceReplicaInfoList request. The method always // closes the http.Response Body. func (client BaseClient) GetDeployedServiceReplicaInfoListResponder(resp *http.Response) (result ListDeployedServiceReplicaInfo, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusNoContent), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetDeployedServiceTypeInfoByName gets the list containing the information about a specific service type from the // applications deployed on a node in a Service Fabric cluster. The response includes the name of the service type, its // registration status, the code package that registered it and activation ID of the service package. Each entry // represents one activation of a service type, differentiated by the activation ID. // Parameters: // nodeName - the name of the node. // applicationID - the identity of the application. This is typically the full name of the application without // the 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the application name is "fabric:/myapp/app1", the application identity would be "myapp~app1" // in 6.0+ and "myapp/app1" in previous versions. // serviceTypeName - specifies the name of a Service Fabric service type. // serviceManifestName - the name of the service manifest to filter the list of deployed service type // information. If specified, the response will only contain the information about service types that are // defined in this service manifest. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetDeployedServiceTypeInfoByName(ctx context.Context, nodeName string, applicationID string, serviceTypeName string, serviceManifestName string, timeout *int64) (result ListDeployedServiceTypeInfo, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetDeployedServiceTypeInfoByName") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetDeployedServiceTypeInfoByName", err.Error()) } req, err := client.GetDeployedServiceTypeInfoByNamePreparer(ctx, nodeName, applicationID, serviceTypeName, serviceManifestName, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedServiceTypeInfoByName", nil, "Failure preparing request") return } resp, err := client.GetDeployedServiceTypeInfoByNameSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedServiceTypeInfoByName", resp, "Failure sending request") return } result, err = client.GetDeployedServiceTypeInfoByNameResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedServiceTypeInfoByName", resp, "Failure responding to request") return } return } // GetDeployedServiceTypeInfoByNamePreparer prepares the GetDeployedServiceTypeInfoByName request. func (client BaseClient) GetDeployedServiceTypeInfoByNamePreparer(ctx context.Context, nodeName string, applicationID string, serviceTypeName string, serviceManifestName string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationId": applicationID, "nodeName": autorest.Encode("path", nodeName), "serviceTypeName": serviceTypeName, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if len(serviceManifestName) > 0 { queryParameters["ServiceManifestName"] = autorest.Encode("query", serviceManifestName) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Nodes/{nodeName}/$/GetApplications/{applicationId}/$/GetServiceTypes/{serviceTypeName}", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetDeployedServiceTypeInfoByNameSender sends the GetDeployedServiceTypeInfoByName request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetDeployedServiceTypeInfoByNameSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetDeployedServiceTypeInfoByNameResponder handles the response to the GetDeployedServiceTypeInfoByName request. The method always // closes the http.Response Body. func (client BaseClient) GetDeployedServiceTypeInfoByNameResponder(resp *http.Response) (result ListDeployedServiceTypeInfo, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusNoContent), autorest.ByUnmarshallingJSON(&result.Value), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetDeployedServiceTypeInfoList gets the list containing the information about service types from the applications // deployed on a node in a Service Fabric cluster. The response includes the name of the service type, its registration // status, the code package that registered it and activation ID of the service package. // Parameters: // nodeName - the name of the node. // applicationID - the identity of the application. This is typically the full name of the application without // the 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the application name is "fabric:/myapp/app1", the application identity would be "myapp~app1" // in 6.0+ and "myapp/app1" in previous versions. // serviceManifestName - the name of the service manifest to filter the list of deployed service type // information. If specified, the response will only contain the information about service types that are // defined in this service manifest. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetDeployedServiceTypeInfoList(ctx context.Context, nodeName string, applicationID string, serviceManifestName string, timeout *int64) (result ListDeployedServiceTypeInfo, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetDeployedServiceTypeInfoList") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetDeployedServiceTypeInfoList", err.Error()) } req, err := client.GetDeployedServiceTypeInfoListPreparer(ctx, nodeName, applicationID, serviceManifestName, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedServiceTypeInfoList", nil, "Failure preparing request") return } resp, err := client.GetDeployedServiceTypeInfoListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedServiceTypeInfoList", resp, "Failure sending request") return } result, err = client.GetDeployedServiceTypeInfoListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetDeployedServiceTypeInfoList", resp, "Failure responding to request") return } return } // GetDeployedServiceTypeInfoListPreparer prepares the GetDeployedServiceTypeInfoList request. func (client BaseClient) GetDeployedServiceTypeInfoListPreparer(ctx context.Context, nodeName string, applicationID string, serviceManifestName string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationId": applicationID, "nodeName": autorest.Encode("path", nodeName), } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if len(serviceManifestName) > 0 { queryParameters["ServiceManifestName"] = autorest.Encode("query", serviceManifestName) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Nodes/{nodeName}/$/GetApplications/{applicationId}/$/GetServiceTypes", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetDeployedServiceTypeInfoListSender sends the GetDeployedServiceTypeInfoList request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetDeployedServiceTypeInfoListSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetDeployedServiceTypeInfoListResponder handles the response to the GetDeployedServiceTypeInfoList request. The method always // closes the http.Response Body. func (client BaseClient) GetDeployedServiceTypeInfoListResponder(resp *http.Response) (result ListDeployedServiceTypeInfo, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result.Value), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetFaultOperationList gets the a list of user-induced fault operations filtered by provided input. // Parameters: // typeFilter - used to filter on OperationType for user-induced operations. // 65535 - select all // 1 - select PartitionDataLoss. // 2 - select PartitionQuorumLoss. // 4 - select PartitionRestart. // 8 - select NodeTransition. // stateFilter - used to filter on OperationState's for user-induced operations. // 65535 - select All // 1 - select Running // 2 - select RollingBack // 8 - select Completed // 16 - select Faulted // 32 - select Cancelled // 64 - select ForceCancelled // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetFaultOperationList(ctx context.Context, typeFilter int32, stateFilter int32, timeout *int64) (result ListOperationStatus, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetFaultOperationList") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetFaultOperationList", err.Error()) } req, err := client.GetFaultOperationListPreparer(ctx, typeFilter, stateFilter, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetFaultOperationList", nil, "Failure preparing request") return } resp, err := client.GetFaultOperationListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetFaultOperationList", resp, "Failure sending request") return } result, err = client.GetFaultOperationListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetFaultOperationList", resp, "Failure responding to request") return } return } // GetFaultOperationListPreparer prepares the GetFaultOperationList request. func (client BaseClient) GetFaultOperationListPreparer(ctx context.Context, typeFilter int32, stateFilter int32, timeout *int64) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, "StateFilter": autorest.Encode("query", stateFilter), "TypeFilter": autorest.Encode("query", typeFilter), } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/Faults/"), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetFaultOperationListSender sends the GetFaultOperationList request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetFaultOperationListSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetFaultOperationListResponder handles the response to the GetFaultOperationList request. The method always // closes the http.Response Body. func (client BaseClient) GetFaultOperationListResponder(resp *http.Response) (result ListOperationStatus, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result.Value), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetImageStoreContent returns the information about the image store content at the specified contentPath relative to // the root of the image store. // Parameters: // contentPath - relative path to file or folder in the image store from its root. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetImageStoreContent(ctx context.Context, contentPath string, timeout *int64) (result ImageStoreContent, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetImageStoreContent") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetImageStoreContent", err.Error()) } req, err := client.GetImageStoreContentPreparer(ctx, contentPath, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetImageStoreContent", nil, "Failure preparing request") return } resp, err := client.GetImageStoreContentSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetImageStoreContent", resp, "Failure sending request") return } result, err = client.GetImageStoreContentResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetImageStoreContent", resp, "Failure responding to request") return } return } // GetImageStoreContentPreparer prepares the GetImageStoreContent request. func (client BaseClient) GetImageStoreContentPreparer(ctx context.Context, contentPath string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "contentPath": autorest.Encode("path", contentPath), } const APIVersion = "6.2" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/ImageStore/{contentPath}", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetImageStoreContentSender sends the GetImageStoreContent request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetImageStoreContentSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetImageStoreContentResponder handles the response to the GetImageStoreContent request. The method always // closes the http.Response Body. func (client BaseClient) GetImageStoreContentResponder(resp *http.Response) (result ImageStoreContent, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetImageStoreRootContent returns the information about the image store content at the root of the image store. // Parameters: // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetImageStoreRootContent(ctx context.Context, timeout *int64) (result ImageStoreContent, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetImageStoreRootContent") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetImageStoreRootContent", err.Error()) } req, err := client.GetImageStoreRootContentPreparer(ctx, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetImageStoreRootContent", nil, "Failure preparing request") return } resp, err := client.GetImageStoreRootContentSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetImageStoreRootContent", resp, "Failure sending request") return } result, err = client.GetImageStoreRootContentResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetImageStoreRootContent", resp, "Failure responding to request") return } return } // GetImageStoreRootContentPreparer prepares the GetImageStoreRootContent request. func (client BaseClient) GetImageStoreRootContentPreparer(ctx context.Context, timeout *int64) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/ImageStore"), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetImageStoreRootContentSender sends the GetImageStoreRootContent request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetImageStoreRootContentSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetImageStoreRootContentResponder handles the response to the GetImageStoreRootContent request. The method always // closes the http.Response Body. func (client BaseClient) GetImageStoreRootContentResponder(resp *http.Response) (result ImageStoreContent, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetImageStoreUploadSessionByID gets the image store upload session identified by the given ID. User can query the // upload session at any time during uploading. // Parameters: // sessionID - a GUID generated by the user for a file uploading. It identifies an image store upload session // which keeps track of all file chunks until it is committed. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetImageStoreUploadSessionByID(ctx context.Context, sessionID uuid.UUID, timeout *int64) (result UploadSession, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetImageStoreUploadSessionByID") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetImageStoreUploadSessionByID", err.Error()) } req, err := client.GetImageStoreUploadSessionByIDPreparer(ctx, sessionID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetImageStoreUploadSessionByID", nil, "Failure preparing request") return } resp, err := client.GetImageStoreUploadSessionByIDSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetImageStoreUploadSessionByID", resp, "Failure sending request") return } result, err = client.GetImageStoreUploadSessionByIDResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetImageStoreUploadSessionByID", resp, "Failure responding to request") return } return } // GetImageStoreUploadSessionByIDPreparer prepares the GetImageStoreUploadSessionByID request. func (client BaseClient) GetImageStoreUploadSessionByIDPreparer(ctx context.Context, sessionID uuid.UUID, timeout *int64) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, "session-id": autorest.Encode("query", sessionID), } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/ImageStore/$/GetUploadSession"), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetImageStoreUploadSessionByIDSender sends the GetImageStoreUploadSessionByID request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetImageStoreUploadSessionByIDSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetImageStoreUploadSessionByIDResponder handles the response to the GetImageStoreUploadSessionByID request. The method always // closes the http.Response Body. func (client BaseClient) GetImageStoreUploadSessionByIDResponder(resp *http.Response) (result UploadSession, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetImageStoreUploadSessionByPath gets the image store upload session associated with the given image store relative // path. User can query the upload session at any time during uploading. // Parameters: // contentPath - relative path to file or folder in the image store from its root. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetImageStoreUploadSessionByPath(ctx context.Context, contentPath string, timeout *int64) (result UploadSession, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetImageStoreUploadSessionByPath") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetImageStoreUploadSessionByPath", err.Error()) } req, err := client.GetImageStoreUploadSessionByPathPreparer(ctx, contentPath, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetImageStoreUploadSessionByPath", nil, "Failure preparing request") return } resp, err := client.GetImageStoreUploadSessionByPathSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetImageStoreUploadSessionByPath", resp, "Failure sending request") return } result, err = client.GetImageStoreUploadSessionByPathResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetImageStoreUploadSessionByPath", resp, "Failure responding to request") return } return } // GetImageStoreUploadSessionByPathPreparer prepares the GetImageStoreUploadSessionByPath request. func (client BaseClient) GetImageStoreUploadSessionByPathPreparer(ctx context.Context, contentPath string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "contentPath": autorest.Encode("path", contentPath), } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/ImageStore/{contentPath}/$/GetUploadSession", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetImageStoreUploadSessionByPathSender sends the GetImageStoreUploadSessionByPath request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetImageStoreUploadSessionByPathSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetImageStoreUploadSessionByPathResponder handles the response to the GetImageStoreUploadSessionByPath request. The method always // closes the http.Response Body. func (client BaseClient) GetImageStoreUploadSessionByPathResponder(resp *http.Response) (result UploadSession, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetNameExistsInfo returns whether the specified Service Fabric name exists. // Parameters: // nameID - the Service Fabric name, without the 'fabric:' URI scheme. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetNameExistsInfo(ctx context.Context, nameID string, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetNameExistsInfo") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetNameExistsInfo", err.Error()) } req, err := client.GetNameExistsInfoPreparer(ctx, nameID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetNameExistsInfo", nil, "Failure preparing request") return } resp, err := client.GetNameExistsInfoSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetNameExistsInfo", resp, "Failure sending request") return } result, err = client.GetNameExistsInfoResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetNameExistsInfo", resp, "Failure responding to request") return } return } // GetNameExistsInfoPreparer prepares the GetNameExistsInfo request. func (client BaseClient) GetNameExistsInfoPreparer(ctx context.Context, nameID string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "nameId": nameID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Names/{nameId}", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetNameExistsInfoSender sends the GetNameExistsInfo request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetNameExistsInfoSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetNameExistsInfoResponder handles the response to the GetNameExistsInfo request. The method always // closes the http.Response Body. func (client BaseClient) GetNameExistsInfoResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // GetNodeEventList the response is list of NodeEvent objects. // Parameters: // nodeName - the name of the node. // startTimeUtc - the start time of a lookup query in ISO UTC yyyy-MM-ddTHH:mm:ssZ. // endTimeUtc - the end time of a lookup query in ISO UTC yyyy-MM-ddTHH:mm:ssZ. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. // eventsTypesFilter - this is a comma separated string specifying the types of FabricEvents that should only // be included in the response. // excludeAnalysisEvents - this param disables the retrieval of AnalysisEvents if true is passed. // skipCorrelationLookup - this param disables the search of CorrelatedEvents information if true is passed. // otherwise the CorrelationEvents get processed and HasCorrelatedEvents field in every FabricEvent gets // populated. func (client BaseClient) GetNodeEventList(ctx context.Context, nodeName string, startTimeUtc string, endTimeUtc string, timeout *int64, eventsTypesFilter string, excludeAnalysisEvents *bool, skipCorrelationLookup *bool) (result ListNodeEvent, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetNodeEventList") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetNodeEventList", err.Error()) } req, err := client.GetNodeEventListPreparer(ctx, nodeName, startTimeUtc, endTimeUtc, timeout, eventsTypesFilter, excludeAnalysisEvents, skipCorrelationLookup) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetNodeEventList", nil, "Failure preparing request") return } resp, err := client.GetNodeEventListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetNodeEventList", resp, "Failure sending request") return } result, err = client.GetNodeEventListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetNodeEventList", resp, "Failure responding to request") return } return } // GetNodeEventListPreparer prepares the GetNodeEventList request. func (client BaseClient) GetNodeEventListPreparer(ctx context.Context, nodeName string, startTimeUtc string, endTimeUtc string, timeout *int64, eventsTypesFilter string, excludeAnalysisEvents *bool, skipCorrelationLookup *bool) (*http.Request, error) { pathParameters := map[string]interface{}{ "nodeName": autorest.Encode("path", nodeName), } const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, "EndTimeUtc": autorest.Encode("query", endTimeUtc), "StartTimeUtc": autorest.Encode("query", startTimeUtc), } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } if len(eventsTypesFilter) > 0 { queryParameters["EventsTypesFilter"] = autorest.Encode("query", eventsTypesFilter) } if excludeAnalysisEvents != nil { queryParameters["ExcludeAnalysisEvents"] = autorest.Encode("query", *excludeAnalysisEvents) } if skipCorrelationLookup != nil { queryParameters["SkipCorrelationLookup"] = autorest.Encode("query", *skipCorrelationLookup) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/EventsStore/Nodes/{nodeName}/$/Events", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetNodeEventListSender sends the GetNodeEventList request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetNodeEventListSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetNodeEventListResponder handles the response to the GetNodeEventList request. The method always // closes the http.Response Body. func (client BaseClient) GetNodeEventListResponder(resp *http.Response) (result ListNodeEvent, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetNodeHealth gets the health of a Service Fabric node. Use EventsHealthStateFilter to filter the collection of // health events reported on the node based on the health state. If the node that you specify by name does not exist in // the health store, this returns an error. // Parameters: // nodeName - the name of the node. // eventsHealthStateFilter - allows filtering the collection of HealthEvent objects returned based on health // state. // The possible values for this parameter include integer value of one of the following health states. // Only events that match the filter are returned. All events are used to evaluate the aggregated health state. // If not specified, all entries are returned. The state values are flag based enumeration, so the value could // be a combination of these value obtained using bitwise 'OR' operator. For example, If the provided value is // 6 then all of the events with HealthState value of OK (2) and Warning (4) are returned. // // - Default - Default value. Matches any HealthState. The value is zero. // - None - Filter that doesn't match any HealthState value. Used in order to return no results on a given // collection of states. The value is 1. // - Ok - Filter that matches input with HealthState value Ok. The value is 2. // - Warning - Filter that matches input with HealthState value Warning. The value is 4. // - Error - Filter that matches input with HealthState value Error. The value is 8. // - All - Filter that matches input with any HealthState value. The value is 65535. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetNodeHealth(ctx context.Context, nodeName string, eventsHealthStateFilter *int32, timeout *int64) (result NodeHealth, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetNodeHealth") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetNodeHealth", err.Error()) } req, err := client.GetNodeHealthPreparer(ctx, nodeName, eventsHealthStateFilter, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetNodeHealth", nil, "Failure preparing request") return } resp, err := client.GetNodeHealthSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetNodeHealth", resp, "Failure sending request") return } result, err = client.GetNodeHealthResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetNodeHealth", resp, "Failure responding to request") return } return } // GetNodeHealthPreparer prepares the GetNodeHealth request. func (client BaseClient) GetNodeHealthPreparer(ctx context.Context, nodeName string, eventsHealthStateFilter *int32, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "nodeName": autorest.Encode("path", nodeName), } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if eventsHealthStateFilter != nil { queryParameters["EventsHealthStateFilter"] = autorest.Encode("query", *eventsHealthStateFilter) } else { queryParameters["EventsHealthStateFilter"] = autorest.Encode("query", 0) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Nodes/{nodeName}/$/GetHealth", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetNodeHealthSender sends the GetNodeHealth request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetNodeHealthSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetNodeHealthResponder handles the response to the GetNodeHealth request. The method always // closes the http.Response Body. func (client BaseClient) GetNodeHealthResponder(resp *http.Response) (result NodeHealth, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetNodeHealthUsingPolicy gets the health of a Service Fabric node. Use EventsHealthStateFilter to filter the // collection of health events reported on the node based on the health state. Use ClusterHealthPolicy in the POST body // to override the health policies used to evaluate the health. If the node that you specify by name does not exist in // the health store, this returns an error. // Parameters: // nodeName - the name of the node. // eventsHealthStateFilter - allows filtering the collection of HealthEvent objects returned based on health // state. // The possible values for this parameter include integer value of one of the following health states. // Only events that match the filter are returned. All events are used to evaluate the aggregated health state. // If not specified, all entries are returned. The state values are flag based enumeration, so the value could // be a combination of these value obtained using bitwise 'OR' operator. For example, If the provided value is // 6 then all of the events with HealthState value of OK (2) and Warning (4) are returned. // // - Default - Default value. Matches any HealthState. The value is zero. // - None - Filter that doesn't match any HealthState value. Used in order to return no results on a given // collection of states. The value is 1. // - Ok - Filter that matches input with HealthState value Ok. The value is 2. // - Warning - Filter that matches input with HealthState value Warning. The value is 4. // - Error - Filter that matches input with HealthState value Error. The value is 8. // - All - Filter that matches input with any HealthState value. The value is 65535. // clusterHealthPolicy - describes the health policies used to evaluate the health of a cluster or node. If not // present, the health evaluation uses the health policy from cluster manifest or the default health policy. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetNodeHealthUsingPolicy(ctx context.Context, nodeName string, eventsHealthStateFilter *int32, clusterHealthPolicy *ClusterHealthPolicy, timeout *int64) (result NodeHealth, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetNodeHealthUsingPolicy") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetNodeHealthUsingPolicy", err.Error()) } req, err := client.GetNodeHealthUsingPolicyPreparer(ctx, nodeName, eventsHealthStateFilter, clusterHealthPolicy, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetNodeHealthUsingPolicy", nil, "Failure preparing request") return } resp, err := client.GetNodeHealthUsingPolicySender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetNodeHealthUsingPolicy", resp, "Failure sending request") return } result, err = client.GetNodeHealthUsingPolicyResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetNodeHealthUsingPolicy", resp, "Failure responding to request") return } return } // GetNodeHealthUsingPolicyPreparer prepares the GetNodeHealthUsingPolicy request. func (client BaseClient) GetNodeHealthUsingPolicyPreparer(ctx context.Context, nodeName string, eventsHealthStateFilter *int32, clusterHealthPolicy *ClusterHealthPolicy, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "nodeName": autorest.Encode("path", nodeName), } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if eventsHealthStateFilter != nil { queryParameters["EventsHealthStateFilter"] = autorest.Encode("query", *eventsHealthStateFilter) } else { queryParameters["EventsHealthStateFilter"] = autorest.Encode("query", 0) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Nodes/{nodeName}/$/GetHealth", pathParameters), autorest.WithQueryParameters(queryParameters)) if clusterHealthPolicy != nil { preparer = autorest.DecoratePreparer(preparer, autorest.WithJSON(clusterHealthPolicy)) } return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetNodeHealthUsingPolicySender sends the GetNodeHealthUsingPolicy request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetNodeHealthUsingPolicySender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetNodeHealthUsingPolicyResponder handles the response to the GetNodeHealthUsingPolicy request. The method always // closes the http.Response Body. func (client BaseClient) GetNodeHealthUsingPolicyResponder(resp *http.Response) (result NodeHealth, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetNodeInfo gets the information about a specific node in the Service Fabric Cluster. The response includes the // name, status, id, health, uptime, and other details about the node. // Parameters: // nodeName - the name of the node. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetNodeInfo(ctx context.Context, nodeName string, timeout *int64) (result NodeInfo, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetNodeInfo") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetNodeInfo", err.Error()) } req, err := client.GetNodeInfoPreparer(ctx, nodeName, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetNodeInfo", nil, "Failure preparing request") return } resp, err := client.GetNodeInfoSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetNodeInfo", resp, "Failure sending request") return } result, err = client.GetNodeInfoResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetNodeInfo", resp, "Failure responding to request") return } return } // GetNodeInfoPreparer prepares the GetNodeInfo request. func (client BaseClient) GetNodeInfoPreparer(ctx context.Context, nodeName string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "nodeName": autorest.Encode("path", nodeName), } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Nodes/{nodeName}", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetNodeInfoSender sends the GetNodeInfo request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetNodeInfoSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetNodeInfoResponder handles the response to the GetNodeInfo request. The method always // closes the http.Response Body. func (client BaseClient) GetNodeInfoResponder(resp *http.Response) (result NodeInfo, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusNoContent), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetNodeInfoList gets the list of nodes in the Service Fabric cluster. The response includes the name, status, id, // health, uptime, and other details about the node. // Parameters: // continuationToken - the continuation token parameter is used to obtain next set of results. A continuation // token with a non empty value is included in the response of the API when the results from the system do not // fit in a single response. When this value is passed to the next API call, the API returns next set of // results. If there are no further results then the continuation token does not contain a value. The value of // this parameter should not be URL encoded. // nodeStatusFilter - allows filtering the nodes based on the NodeStatus. Only the nodes that are matching the // specified filter value will be returned. The filter value can be one of the following. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetNodeInfoList(ctx context.Context, continuationToken string, nodeStatusFilter NodeStatusFilter, timeout *int64) (result PagedNodeInfoList, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetNodeInfoList") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetNodeInfoList", err.Error()) } req, err := client.GetNodeInfoListPreparer(ctx, continuationToken, nodeStatusFilter, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetNodeInfoList", nil, "Failure preparing request") return } resp, err := client.GetNodeInfoListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetNodeInfoList", resp, "Failure sending request") return } result, err = client.GetNodeInfoListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetNodeInfoList", resp, "Failure responding to request") return } return } // GetNodeInfoListPreparer prepares the GetNodeInfoList request. func (client BaseClient) GetNodeInfoListPreparer(ctx context.Context, continuationToken string, nodeStatusFilter NodeStatusFilter, timeout *int64) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if len(continuationToken) > 0 { queryParameters["ContinuationToken"] = continuationToken } if len(string(nodeStatusFilter)) > 0 { queryParameters["NodeStatusFilter"] = autorest.Encode("query", nodeStatusFilter) } else { queryParameters["NodeStatusFilter"] = autorest.Encode("query", "default") } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/Nodes"), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetNodeInfoListSender sends the GetNodeInfoList request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetNodeInfoListSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetNodeInfoListResponder handles the response to the GetNodeInfoList request. The method always // closes the http.Response Body. func (client BaseClient) GetNodeInfoListResponder(resp *http.Response) (result PagedNodeInfoList, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetNodeLoadInfo retrieves the load information of a Service Fabric node for all the metrics that have load or // capacity defined. // Parameters: // nodeName - the name of the node. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetNodeLoadInfo(ctx context.Context, nodeName string, timeout *int64) (result NodeLoadInfo, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetNodeLoadInfo") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetNodeLoadInfo", err.Error()) } req, err := client.GetNodeLoadInfoPreparer(ctx, nodeName, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetNodeLoadInfo", nil, "Failure preparing request") return } resp, err := client.GetNodeLoadInfoSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetNodeLoadInfo", resp, "Failure sending request") return } result, err = client.GetNodeLoadInfoResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetNodeLoadInfo", resp, "Failure responding to request") return } return } // GetNodeLoadInfoPreparer prepares the GetNodeLoadInfo request. func (client BaseClient) GetNodeLoadInfoPreparer(ctx context.Context, nodeName string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "nodeName": autorest.Encode("path", nodeName), } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Nodes/{nodeName}/$/GetLoadInformation", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetNodeLoadInfoSender sends the GetNodeLoadInfo request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetNodeLoadInfoSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetNodeLoadInfoResponder handles the response to the GetNodeLoadInfo request. The method always // closes the http.Response Body. func (client BaseClient) GetNodeLoadInfoResponder(resp *http.Response) (result NodeLoadInfo, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetNodesEventList the response is list of NodeEvent objects. // Parameters: // startTimeUtc - the start time of a lookup query in ISO UTC yyyy-MM-ddTHH:mm:ssZ. // endTimeUtc - the end time of a lookup query in ISO UTC yyyy-MM-ddTHH:mm:ssZ. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. // eventsTypesFilter - this is a comma separated string specifying the types of FabricEvents that should only // be included in the response. // excludeAnalysisEvents - this param disables the retrieval of AnalysisEvents if true is passed. // skipCorrelationLookup - this param disables the search of CorrelatedEvents information if true is passed. // otherwise the CorrelationEvents get processed and HasCorrelatedEvents field in every FabricEvent gets // populated. func (client BaseClient) GetNodesEventList(ctx context.Context, startTimeUtc string, endTimeUtc string, timeout *int64, eventsTypesFilter string, excludeAnalysisEvents *bool, skipCorrelationLookup *bool) (result ListNodeEvent, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetNodesEventList") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetNodesEventList", err.Error()) } req, err := client.GetNodesEventListPreparer(ctx, startTimeUtc, endTimeUtc, timeout, eventsTypesFilter, excludeAnalysisEvents, skipCorrelationLookup) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetNodesEventList", nil, "Failure preparing request") return } resp, err := client.GetNodesEventListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetNodesEventList", resp, "Failure sending request") return } result, err = client.GetNodesEventListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetNodesEventList", resp, "Failure responding to request") return } return } // GetNodesEventListPreparer prepares the GetNodesEventList request. func (client BaseClient) GetNodesEventListPreparer(ctx context.Context, startTimeUtc string, endTimeUtc string, timeout *int64, eventsTypesFilter string, excludeAnalysisEvents *bool, skipCorrelationLookup *bool) (*http.Request, error) { const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, "EndTimeUtc": autorest.Encode("query", endTimeUtc), "StartTimeUtc": autorest.Encode("query", startTimeUtc), } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } if len(eventsTypesFilter) > 0 { queryParameters["EventsTypesFilter"] = autorest.Encode("query", eventsTypesFilter) } if excludeAnalysisEvents != nil { queryParameters["ExcludeAnalysisEvents"] = autorest.Encode("query", *excludeAnalysisEvents) } if skipCorrelationLookup != nil { queryParameters["SkipCorrelationLookup"] = autorest.Encode("query", *skipCorrelationLookup) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/EventsStore/Nodes/Events"), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetNodesEventListSender sends the GetNodesEventList request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetNodesEventListSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetNodesEventListResponder handles the response to the GetNodesEventList request. The method always // closes the http.Response Body. func (client BaseClient) GetNodesEventListResponder(resp *http.Response) (result ListNodeEvent, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetNodeTransitionProgress gets the progress of an operation started with StartNodeTransition using the provided // OperationId. // Parameters: // nodeName - the name of the node. // operationID - a GUID that identifies a call of this API. This is passed into the corresponding GetProgress // API // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetNodeTransitionProgress(ctx context.Context, nodeName string, operationID uuid.UUID, timeout *int64) (result NodeTransitionProgress, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetNodeTransitionProgress") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetNodeTransitionProgress", err.Error()) } req, err := client.GetNodeTransitionProgressPreparer(ctx, nodeName, operationID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetNodeTransitionProgress", nil, "Failure preparing request") return } resp, err := client.GetNodeTransitionProgressSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetNodeTransitionProgress", resp, "Failure sending request") return } result, err = client.GetNodeTransitionProgressResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetNodeTransitionProgress", resp, "Failure responding to request") return } return } // GetNodeTransitionProgressPreparer prepares the GetNodeTransitionProgress request. func (client BaseClient) GetNodeTransitionProgressPreparer(ctx context.Context, nodeName string, operationID uuid.UUID, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "nodeName": autorest.Encode("path", nodeName), } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, "OperationId": autorest.Encode("query", operationID), } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Faults/Nodes/{nodeName}/$/GetTransitionProgress", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetNodeTransitionProgressSender sends the GetNodeTransitionProgress request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetNodeTransitionProgressSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetNodeTransitionProgressResponder handles the response to the GetNodeTransitionProgress request. The method always // closes the http.Response Body. func (client BaseClient) GetNodeTransitionProgressResponder(resp *http.Response) (result NodeTransitionProgress, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetPartitionBackupConfigurationInfo gets the Service Fabric Backup configuration information for the specified // partition. // Parameters: // partitionID - the identity of the partition. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetPartitionBackupConfigurationInfo(ctx context.Context, partitionID uuid.UUID, timeout *int64) (result PartitionBackupConfigurationInfo, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetPartitionBackupConfigurationInfo") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetPartitionBackupConfigurationInfo", err.Error()) } req, err := client.GetPartitionBackupConfigurationInfoPreparer(ctx, partitionID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionBackupConfigurationInfo", nil, "Failure preparing request") return } resp, err := client.GetPartitionBackupConfigurationInfoSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionBackupConfigurationInfo", resp, "Failure sending request") return } result, err = client.GetPartitionBackupConfigurationInfoResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionBackupConfigurationInfo", resp, "Failure responding to request") return } return } // GetPartitionBackupConfigurationInfoPreparer prepares the GetPartitionBackupConfigurationInfo request. func (client BaseClient) GetPartitionBackupConfigurationInfoPreparer(ctx context.Context, partitionID uuid.UUID, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "partitionId": partitionID, } const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Partitions/{partitionId}/$/GetBackupConfigurationInfo", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetPartitionBackupConfigurationInfoSender sends the GetPartitionBackupConfigurationInfo request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetPartitionBackupConfigurationInfoSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetPartitionBackupConfigurationInfoResponder handles the response to the GetPartitionBackupConfigurationInfo request. The method always // closes the http.Response Body. func (client BaseClient) GetPartitionBackupConfigurationInfoResponder(resp *http.Response) (result PartitionBackupConfigurationInfo, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetPartitionBackupList returns a list of backups available for the specified partition. The server enumerates all // the backups available in the backup store configured in the backup policy. It also allows filtering of the result // based on start and end datetime or just fetching the latest available backup for the partition. // Parameters: // partitionID - the identity of the partition. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. // latest - specifies whether to get only the most recent backup available for a partition for the specified // time range. // startDateTimeFilter - specify the start date time from which to enumerate backups, in datetime format. The // date time must be specified in ISO8601 format. This is an optional parameter. If not specified, all backups // from the beginning are enumerated. // endDateTimeFilter - specify the end date time till which to enumerate backups, in datetime format. The date // time must be specified in ISO8601 format. This is an optional parameter. If not specified, enumeration is // done till the most recent backup. func (client BaseClient) GetPartitionBackupList(ctx context.Context, partitionID uuid.UUID, timeout *int64, latest *bool, startDateTimeFilter *date.Time, endDateTimeFilter *date.Time) (result PagedBackupInfoList, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetPartitionBackupList") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetPartitionBackupList", err.Error()) } req, err := client.GetPartitionBackupListPreparer(ctx, partitionID, timeout, latest, startDateTimeFilter, endDateTimeFilter) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionBackupList", nil, "Failure preparing request") return } resp, err := client.GetPartitionBackupListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionBackupList", resp, "Failure sending request") return } result, err = client.GetPartitionBackupListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionBackupList", resp, "Failure responding to request") return } return } // GetPartitionBackupListPreparer prepares the GetPartitionBackupList request. func (client BaseClient) GetPartitionBackupListPreparer(ctx context.Context, partitionID uuid.UUID, timeout *int64, latest *bool, startDateTimeFilter *date.Time, endDateTimeFilter *date.Time) (*http.Request, error) { pathParameters := map[string]interface{}{ "partitionId": partitionID, } const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } if latest != nil { queryParameters["Latest"] = autorest.Encode("query", *latest) } else { queryParameters["Latest"] = autorest.Encode("query", false) } if startDateTimeFilter != nil { queryParameters["StartDateTimeFilter"] = autorest.Encode("query", *startDateTimeFilter) } if endDateTimeFilter != nil { queryParameters["EndDateTimeFilter"] = autorest.Encode("query", *endDateTimeFilter) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Partitions/{partitionId}/$/GetBackups", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetPartitionBackupListSender sends the GetPartitionBackupList request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetPartitionBackupListSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetPartitionBackupListResponder handles the response to the GetPartitionBackupList request. The method always // closes the http.Response Body. func (client BaseClient) GetPartitionBackupListResponder(resp *http.Response) (result PagedBackupInfoList, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetPartitionBackupProgress returns information about the state of the latest backup along with details or failure // reason in case of completion. // Parameters: // partitionID - the identity of the partition. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetPartitionBackupProgress(ctx context.Context, partitionID uuid.UUID, timeout *int64) (result BackupProgressInfo, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetPartitionBackupProgress") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetPartitionBackupProgress", err.Error()) } req, err := client.GetPartitionBackupProgressPreparer(ctx, partitionID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionBackupProgress", nil, "Failure preparing request") return } resp, err := client.GetPartitionBackupProgressSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionBackupProgress", resp, "Failure sending request") return } result, err = client.GetPartitionBackupProgressResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionBackupProgress", resp, "Failure responding to request") return } return } // GetPartitionBackupProgressPreparer prepares the GetPartitionBackupProgress request. func (client BaseClient) GetPartitionBackupProgressPreparer(ctx context.Context, partitionID uuid.UUID, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "partitionId": partitionID, } const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Partitions/{partitionId}/$/GetBackupProgress", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetPartitionBackupProgressSender sends the GetPartitionBackupProgress request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetPartitionBackupProgressSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetPartitionBackupProgressResponder handles the response to the GetPartitionBackupProgress request. The method always // closes the http.Response Body. func (client BaseClient) GetPartitionBackupProgressResponder(resp *http.Response) (result BackupProgressInfo, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetPartitionEventList the response is list of PartitionEvent objects. // Parameters: // partitionID - the identity of the partition. // startTimeUtc - the start time of a lookup query in ISO UTC yyyy-MM-ddTHH:mm:ssZ. // endTimeUtc - the end time of a lookup query in ISO UTC yyyy-MM-ddTHH:mm:ssZ. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. // eventsTypesFilter - this is a comma separated string specifying the types of FabricEvents that should only // be included in the response. // excludeAnalysisEvents - this param disables the retrieval of AnalysisEvents if true is passed. // skipCorrelationLookup - this param disables the search of CorrelatedEvents information if true is passed. // otherwise the CorrelationEvents get processed and HasCorrelatedEvents field in every FabricEvent gets // populated. func (client BaseClient) GetPartitionEventList(ctx context.Context, partitionID uuid.UUID, startTimeUtc string, endTimeUtc string, timeout *int64, eventsTypesFilter string, excludeAnalysisEvents *bool, skipCorrelationLookup *bool) (result ListPartitionEvent, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetPartitionEventList") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetPartitionEventList", err.Error()) } req, err := client.GetPartitionEventListPreparer(ctx, partitionID, startTimeUtc, endTimeUtc, timeout, eventsTypesFilter, excludeAnalysisEvents, skipCorrelationLookup) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionEventList", nil, "Failure preparing request") return } resp, err := client.GetPartitionEventListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionEventList", resp, "Failure sending request") return } result, err = client.GetPartitionEventListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionEventList", resp, "Failure responding to request") return } return } // GetPartitionEventListPreparer prepares the GetPartitionEventList request. func (client BaseClient) GetPartitionEventListPreparer(ctx context.Context, partitionID uuid.UUID, startTimeUtc string, endTimeUtc string, timeout *int64, eventsTypesFilter string, excludeAnalysisEvents *bool, skipCorrelationLookup *bool) (*http.Request, error) { pathParameters := map[string]interface{}{ "partitionId": partitionID, } const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, "EndTimeUtc": autorest.Encode("query", endTimeUtc), "StartTimeUtc": autorest.Encode("query", startTimeUtc), } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } if len(eventsTypesFilter) > 0 { queryParameters["EventsTypesFilter"] = autorest.Encode("query", eventsTypesFilter) } if excludeAnalysisEvents != nil { queryParameters["ExcludeAnalysisEvents"] = autorest.Encode("query", *excludeAnalysisEvents) } if skipCorrelationLookup != nil { queryParameters["SkipCorrelationLookup"] = autorest.Encode("query", *skipCorrelationLookup) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/EventsStore/Partitions/{partitionId}/$/Events", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetPartitionEventListSender sends the GetPartitionEventList request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetPartitionEventListSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetPartitionEventListResponder handles the response to the GetPartitionEventList request. The method always // closes the http.Response Body. func (client BaseClient) GetPartitionEventListResponder(resp *http.Response) (result ListPartitionEvent, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetPartitionHealth gets the health information of the specified partition. // Use EventsHealthStateFilter to filter the collection of health events reported on the service based on the health // state. // Use ReplicasHealthStateFilter to filter the collection of ReplicaHealthState objects on the partition. // If you specify a partition that does not exist in the health store, this request returns an error. // Parameters: // partitionID - the identity of the partition. // eventsHealthStateFilter - allows filtering the collection of HealthEvent objects returned based on health // state. // The possible values for this parameter include integer value of one of the following health states. // Only events that match the filter are returned. All events are used to evaluate the aggregated health state. // If not specified, all entries are returned. The state values are flag based enumeration, so the value could // be a combination of these value obtained using bitwise 'OR' operator. For example, If the provided value is // 6 then all of the events with HealthState value of OK (2) and Warning (4) are returned. // // - Default - Default value. Matches any HealthState. The value is zero. // - None - Filter that doesn't match any HealthState value. Used in order to return no results on a given // collection of states. The value is 1. // - Ok - Filter that matches input with HealthState value Ok. The value is 2. // - Warning - Filter that matches input with HealthState value Warning. The value is 4. // - Error - Filter that matches input with HealthState value Error. The value is 8. // - All - Filter that matches input with any HealthState value. The value is 65535. // replicasHealthStateFilter - allows filtering the collection of ReplicaHealthState objects on the partition. // The value can be obtained from members or bitwise operations on members of HealthStateFilter. Only replicas // that match the filter will be returned. All replicas will be used to evaluate the aggregated health state. // If not specified, all entries will be returned.The state values are flag based enumeration, so the value // could be a combination of these value obtained using bitwise 'OR' operator. For example, If the provided // value is 6 then all of the events with HealthState value of OK (2) and Warning (4) will be returned. The // possible values for this parameter include integer value of one of the following health states. // // - Default - Default value. Matches any HealthState. The value is zero. // - None - Filter that doesn't match any HealthState value. Used in order to return no results on a given // collection of states. The value is 1. // - Ok - Filter that matches input with HealthState value Ok. The value is 2. // - Warning - Filter that matches input with HealthState value Warning. The value is 4. // - Error - Filter that matches input with HealthState value Error. The value is 8. // - All - Filter that matches input with any HealthState value. The value is 65535. // excludeHealthStatistics - indicates whether the health statistics should be returned as part of the query // result. False by default. // The statistics show the number of children entities in health state Ok, Warning, and Error. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetPartitionHealth(ctx context.Context, partitionID uuid.UUID, eventsHealthStateFilter *int32, replicasHealthStateFilter *int32, excludeHealthStatistics *bool, timeout *int64) (result PartitionHealth, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetPartitionHealth") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetPartitionHealth", err.Error()) } req, err := client.GetPartitionHealthPreparer(ctx, partitionID, eventsHealthStateFilter, replicasHealthStateFilter, excludeHealthStatistics, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionHealth", nil, "Failure preparing request") return } resp, err := client.GetPartitionHealthSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionHealth", resp, "Failure sending request") return } result, err = client.GetPartitionHealthResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionHealth", resp, "Failure responding to request") return } return } // GetPartitionHealthPreparer prepares the GetPartitionHealth request. func (client BaseClient) GetPartitionHealthPreparer(ctx context.Context, partitionID uuid.UUID, eventsHealthStateFilter *int32, replicasHealthStateFilter *int32, excludeHealthStatistics *bool, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "partitionId": partitionID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if eventsHealthStateFilter != nil { queryParameters["EventsHealthStateFilter"] = autorest.Encode("query", *eventsHealthStateFilter) } else { queryParameters["EventsHealthStateFilter"] = autorest.Encode("query", 0) } if replicasHealthStateFilter != nil { queryParameters["ReplicasHealthStateFilter"] = autorest.Encode("query", *replicasHealthStateFilter) } else { queryParameters["ReplicasHealthStateFilter"] = autorest.Encode("query", 0) } if excludeHealthStatistics != nil { queryParameters["ExcludeHealthStatistics"] = autorest.Encode("query", *excludeHealthStatistics) } else { queryParameters["ExcludeHealthStatistics"] = autorest.Encode("query", false) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Partitions/{partitionId}/$/GetHealth", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetPartitionHealthSender sends the GetPartitionHealth request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetPartitionHealthSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetPartitionHealthResponder handles the response to the GetPartitionHealth request. The method always // closes the http.Response Body. func (client BaseClient) GetPartitionHealthResponder(resp *http.Response) (result PartitionHealth, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetPartitionHealthUsingPolicy gets the health information of the specified partition. // If the application health policy is specified, the health evaluation uses it to get the aggregated health state. // If the policy is not specified, the health evaluation uses the application health policy defined in the application // manifest, or the default health policy, if no policy is defined in the manifest. // Use EventsHealthStateFilter to filter the collection of health events reported on the partition based on the health // state. // Use ReplicasHealthStateFilter to filter the collection of ReplicaHealthState objects on the partition. Use // ApplicationHealthPolicy in the POST body to override the health policies used to evaluate the health. // If you specify a partition that does not exist in the health store, this request returns an error. // Parameters: // partitionID - the identity of the partition. // eventsHealthStateFilter - allows filtering the collection of HealthEvent objects returned based on health // state. // The possible values for this parameter include integer value of one of the following health states. // Only events that match the filter are returned. All events are used to evaluate the aggregated health state. // If not specified, all entries are returned. The state values are flag based enumeration, so the value could // be a combination of these value obtained using bitwise 'OR' operator. For example, If the provided value is // 6 then all of the events with HealthState value of OK (2) and Warning (4) are returned. // // - Default - Default value. Matches any HealthState. The value is zero. // - None - Filter that doesn't match any HealthState value. Used in order to return no results on a given // collection of states. The value is 1. // - Ok - Filter that matches input with HealthState value Ok. The value is 2. // - Warning - Filter that matches input with HealthState value Warning. The value is 4. // - Error - Filter that matches input with HealthState value Error. The value is 8. // - All - Filter that matches input with any HealthState value. The value is 65535. // replicasHealthStateFilter - allows filtering the collection of ReplicaHealthState objects on the partition. // The value can be obtained from members or bitwise operations on members of HealthStateFilter. Only replicas // that match the filter will be returned. All replicas will be used to evaluate the aggregated health state. // If not specified, all entries will be returned.The state values are flag based enumeration, so the value // could be a combination of these value obtained using bitwise 'OR' operator. For example, If the provided // value is 6 then all of the events with HealthState value of OK (2) and Warning (4) will be returned. The // possible values for this parameter include integer value of one of the following health states. // // - Default - Default value. Matches any HealthState. The value is zero. // - None - Filter that doesn't match any HealthState value. Used in order to return no results on a given // collection of states. The value is 1. // - Ok - Filter that matches input with HealthState value Ok. The value is 2. // - Warning - Filter that matches input with HealthState value Warning. The value is 4. // - Error - Filter that matches input with HealthState value Error. The value is 8. // - All - Filter that matches input with any HealthState value. The value is 65535. // applicationHealthPolicy - describes the health policies used to evaluate the health of an application or one // of its children. // If not present, the health evaluation uses the health policy from application manifest or the default health // policy. // excludeHealthStatistics - indicates whether the health statistics should be returned as part of the query // result. False by default. // The statistics show the number of children entities in health state Ok, Warning, and Error. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetPartitionHealthUsingPolicy(ctx context.Context, partitionID uuid.UUID, eventsHealthStateFilter *int32, replicasHealthStateFilter *int32, applicationHealthPolicy *ApplicationHealthPolicy, excludeHealthStatistics *bool, timeout *int64) (result PartitionHealth, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetPartitionHealthUsingPolicy") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetPartitionHealthUsingPolicy", err.Error()) } req, err := client.GetPartitionHealthUsingPolicyPreparer(ctx, partitionID, eventsHealthStateFilter, replicasHealthStateFilter, applicationHealthPolicy, excludeHealthStatistics, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionHealthUsingPolicy", nil, "Failure preparing request") return } resp, err := client.GetPartitionHealthUsingPolicySender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionHealthUsingPolicy", resp, "Failure sending request") return } result, err = client.GetPartitionHealthUsingPolicyResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionHealthUsingPolicy", resp, "Failure responding to request") return } return } // GetPartitionHealthUsingPolicyPreparer prepares the GetPartitionHealthUsingPolicy request. func (client BaseClient) GetPartitionHealthUsingPolicyPreparer(ctx context.Context, partitionID uuid.UUID, eventsHealthStateFilter *int32, replicasHealthStateFilter *int32, applicationHealthPolicy *ApplicationHealthPolicy, excludeHealthStatistics *bool, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "partitionId": partitionID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if eventsHealthStateFilter != nil { queryParameters["EventsHealthStateFilter"] = autorest.Encode("query", *eventsHealthStateFilter) } else { queryParameters["EventsHealthStateFilter"] = autorest.Encode("query", 0) } if replicasHealthStateFilter != nil { queryParameters["ReplicasHealthStateFilter"] = autorest.Encode("query", *replicasHealthStateFilter) } else { queryParameters["ReplicasHealthStateFilter"] = autorest.Encode("query", 0) } if excludeHealthStatistics != nil { queryParameters["ExcludeHealthStatistics"] = autorest.Encode("query", *excludeHealthStatistics) } else { queryParameters["ExcludeHealthStatistics"] = autorest.Encode("query", false) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Partitions/{partitionId}/$/GetHealth", pathParameters), autorest.WithQueryParameters(queryParameters)) if applicationHealthPolicy != nil { preparer = autorest.DecoratePreparer(preparer, autorest.WithJSON(applicationHealthPolicy)) } return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetPartitionHealthUsingPolicySender sends the GetPartitionHealthUsingPolicy request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetPartitionHealthUsingPolicySender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetPartitionHealthUsingPolicyResponder handles the response to the GetPartitionHealthUsingPolicy request. The method always // closes the http.Response Body. func (client BaseClient) GetPartitionHealthUsingPolicyResponder(resp *http.Response) (result PartitionHealth, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetPartitionInfo gets the information about the specified partition. The response includes the partition ID, // partitioning scheme information, keys supported by the partition, status, health, and other details about the // partition. // Parameters: // partitionID - the identity of the partition. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetPartitionInfo(ctx context.Context, partitionID uuid.UUID, timeout *int64) (result ServicePartitionInfoModel, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetPartitionInfo") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetPartitionInfo", err.Error()) } req, err := client.GetPartitionInfoPreparer(ctx, partitionID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionInfo", nil, "Failure preparing request") return } resp, err := client.GetPartitionInfoSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionInfo", resp, "Failure sending request") return } result, err = client.GetPartitionInfoResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionInfo", resp, "Failure responding to request") return } return } // GetPartitionInfoPreparer prepares the GetPartitionInfo request. func (client BaseClient) GetPartitionInfoPreparer(ctx context.Context, partitionID uuid.UUID, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "partitionId": partitionID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Partitions/{partitionId}", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetPartitionInfoSender sends the GetPartitionInfo request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetPartitionInfoSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetPartitionInfoResponder handles the response to the GetPartitionInfo request. The method always // closes the http.Response Body. func (client BaseClient) GetPartitionInfoResponder(resp *http.Response) (result ServicePartitionInfoModel, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusNoContent), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetPartitionInfoList gets the list of partitions of a Service Fabric service. The response includes the partition // ID, partitioning scheme information, keys supported by the partition, status, health, and other details about the // partition. // Parameters: // serviceID - the identity of the service. This is typically the full name of the service without the // 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the service name is "fabric:/myapp/app1/svc1", the service identity would be // "myapp~app1~svc1" in 6.0+ and "myapp/app1/svc1" in previous versions. // continuationToken - the continuation token parameter is used to obtain next set of results. A continuation // token with a non empty value is included in the response of the API when the results from the system do not // fit in a single response. When this value is passed to the next API call, the API returns next set of // results. If there are no further results then the continuation token does not contain a value. The value of // this parameter should not be URL encoded. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetPartitionInfoList(ctx context.Context, serviceID string, continuationToken string, timeout *int64) (result PagedServicePartitionInfoList, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetPartitionInfoList") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetPartitionInfoList", err.Error()) } req, err := client.GetPartitionInfoListPreparer(ctx, serviceID, continuationToken, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionInfoList", nil, "Failure preparing request") return } resp, err := client.GetPartitionInfoListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionInfoList", resp, "Failure sending request") return } result, err = client.GetPartitionInfoListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionInfoList", resp, "Failure responding to request") return } return } // GetPartitionInfoListPreparer prepares the GetPartitionInfoList request. func (client BaseClient) GetPartitionInfoListPreparer(ctx context.Context, serviceID string, continuationToken string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "serviceId": serviceID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if len(continuationToken) > 0 { queryParameters["ContinuationToken"] = continuationToken } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Services/{serviceId}/$/GetPartitions", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetPartitionInfoListSender sends the GetPartitionInfoList request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetPartitionInfoListSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetPartitionInfoListResponder handles the response to the GetPartitionInfoList request. The method always // closes the http.Response Body. func (client BaseClient) GetPartitionInfoListResponder(resp *http.Response) (result PagedServicePartitionInfoList, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetPartitionLoadInformation returns information about the load of a specified partition. // The response includes a list of load reports for a Service Fabric partition. // Each report includes the load metric name, value, and last reported time in UTC. // Parameters: // partitionID - the identity of the partition. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetPartitionLoadInformation(ctx context.Context, partitionID uuid.UUID, timeout *int64) (result PartitionLoadInformation, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetPartitionLoadInformation") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetPartitionLoadInformation", err.Error()) } req, err := client.GetPartitionLoadInformationPreparer(ctx, partitionID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionLoadInformation", nil, "Failure preparing request") return } resp, err := client.GetPartitionLoadInformationSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionLoadInformation", resp, "Failure sending request") return } result, err = client.GetPartitionLoadInformationResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionLoadInformation", resp, "Failure responding to request") return } return } // GetPartitionLoadInformationPreparer prepares the GetPartitionLoadInformation request. func (client BaseClient) GetPartitionLoadInformationPreparer(ctx context.Context, partitionID uuid.UUID, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "partitionId": partitionID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Partitions/{partitionId}/$/GetLoadInformation", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetPartitionLoadInformationSender sends the GetPartitionLoadInformation request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetPartitionLoadInformationSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetPartitionLoadInformationResponder handles the response to the GetPartitionLoadInformation request. The method always // closes the http.Response Body. func (client BaseClient) GetPartitionLoadInformationResponder(resp *http.Response) (result PartitionLoadInformation, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetPartitionReplicaEventList the response is list of ReplicaEvent objects. // Parameters: // partitionID - the identity of the partition. // replicaID - the identifier of the replica. // startTimeUtc - the start time of a lookup query in ISO UTC yyyy-MM-ddTHH:mm:ssZ. // endTimeUtc - the end time of a lookup query in ISO UTC yyyy-MM-ddTHH:mm:ssZ. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. // eventsTypesFilter - this is a comma separated string specifying the types of FabricEvents that should only // be included in the response. // excludeAnalysisEvents - this param disables the retrieval of AnalysisEvents if true is passed. // skipCorrelationLookup - this param disables the search of CorrelatedEvents information if true is passed. // otherwise the CorrelationEvents get processed and HasCorrelatedEvents field in every FabricEvent gets // populated. func (client BaseClient) GetPartitionReplicaEventList(ctx context.Context, partitionID uuid.UUID, replicaID string, startTimeUtc string, endTimeUtc string, timeout *int64, eventsTypesFilter string, excludeAnalysisEvents *bool, skipCorrelationLookup *bool) (result ListReplicaEvent, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetPartitionReplicaEventList") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetPartitionReplicaEventList", err.Error()) } req, err := client.GetPartitionReplicaEventListPreparer(ctx, partitionID, replicaID, startTimeUtc, endTimeUtc, timeout, eventsTypesFilter, excludeAnalysisEvents, skipCorrelationLookup) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionReplicaEventList", nil, "Failure preparing request") return } resp, err := client.GetPartitionReplicaEventListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionReplicaEventList", resp, "Failure sending request") return } result, err = client.GetPartitionReplicaEventListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionReplicaEventList", resp, "Failure responding to request") return } return } // GetPartitionReplicaEventListPreparer prepares the GetPartitionReplicaEventList request. func (client BaseClient) GetPartitionReplicaEventListPreparer(ctx context.Context, partitionID uuid.UUID, replicaID string, startTimeUtc string, endTimeUtc string, timeout *int64, eventsTypesFilter string, excludeAnalysisEvents *bool, skipCorrelationLookup *bool) (*http.Request, error) { pathParameters := map[string]interface{}{ "partitionId": partitionID, "replicaId": replicaID, } const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, "EndTimeUtc": autorest.Encode("query", endTimeUtc), "StartTimeUtc": autorest.Encode("query", startTimeUtc), } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } if len(eventsTypesFilter) > 0 { queryParameters["EventsTypesFilter"] = autorest.Encode("query", eventsTypesFilter) } if excludeAnalysisEvents != nil { queryParameters["ExcludeAnalysisEvents"] = autorest.Encode("query", *excludeAnalysisEvents) } if skipCorrelationLookup != nil { queryParameters["SkipCorrelationLookup"] = autorest.Encode("query", *skipCorrelationLookup) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/EventsStore/Partitions/{partitionId}/$/Replicas/{replicaId}/$/Events", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetPartitionReplicaEventListSender sends the GetPartitionReplicaEventList request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetPartitionReplicaEventListSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetPartitionReplicaEventListResponder handles the response to the GetPartitionReplicaEventList request. The method always // closes the http.Response Body. func (client BaseClient) GetPartitionReplicaEventListResponder(resp *http.Response) (result ListReplicaEvent, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetPartitionReplicasEventList the response is list of ReplicaEvent objects. // Parameters: // partitionID - the identity of the partition. // startTimeUtc - the start time of a lookup query in ISO UTC yyyy-MM-ddTHH:mm:ssZ. // endTimeUtc - the end time of a lookup query in ISO UTC yyyy-MM-ddTHH:mm:ssZ. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. // eventsTypesFilter - this is a comma separated string specifying the types of FabricEvents that should only // be included in the response. // excludeAnalysisEvents - this param disables the retrieval of AnalysisEvents if true is passed. // skipCorrelationLookup - this param disables the search of CorrelatedEvents information if true is passed. // otherwise the CorrelationEvents get processed and HasCorrelatedEvents field in every FabricEvent gets // populated. func (client BaseClient) GetPartitionReplicasEventList(ctx context.Context, partitionID uuid.UUID, startTimeUtc string, endTimeUtc string, timeout *int64, eventsTypesFilter string, excludeAnalysisEvents *bool, skipCorrelationLookup *bool) (result ListReplicaEvent, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetPartitionReplicasEventList") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetPartitionReplicasEventList", err.Error()) } req, err := client.GetPartitionReplicasEventListPreparer(ctx, partitionID, startTimeUtc, endTimeUtc, timeout, eventsTypesFilter, excludeAnalysisEvents, skipCorrelationLookup) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionReplicasEventList", nil, "Failure preparing request") return } resp, err := client.GetPartitionReplicasEventListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionReplicasEventList", resp, "Failure sending request") return } result, err = client.GetPartitionReplicasEventListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionReplicasEventList", resp, "Failure responding to request") return } return } // GetPartitionReplicasEventListPreparer prepares the GetPartitionReplicasEventList request. func (client BaseClient) GetPartitionReplicasEventListPreparer(ctx context.Context, partitionID uuid.UUID, startTimeUtc string, endTimeUtc string, timeout *int64, eventsTypesFilter string, excludeAnalysisEvents *bool, skipCorrelationLookup *bool) (*http.Request, error) { pathParameters := map[string]interface{}{ "partitionId": partitionID, } const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, "EndTimeUtc": autorest.Encode("query", endTimeUtc), "StartTimeUtc": autorest.Encode("query", startTimeUtc), } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } if len(eventsTypesFilter) > 0 { queryParameters["EventsTypesFilter"] = autorest.Encode("query", eventsTypesFilter) } if excludeAnalysisEvents != nil { queryParameters["ExcludeAnalysisEvents"] = autorest.Encode("query", *excludeAnalysisEvents) } if skipCorrelationLookup != nil { queryParameters["SkipCorrelationLookup"] = autorest.Encode("query", *skipCorrelationLookup) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/EventsStore/Partitions/{partitionId}/$/Replicas/Events", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetPartitionReplicasEventListSender sends the GetPartitionReplicasEventList request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetPartitionReplicasEventListSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetPartitionReplicasEventListResponder handles the response to the GetPartitionReplicasEventList request. The method always // closes the http.Response Body. func (client BaseClient) GetPartitionReplicasEventListResponder(resp *http.Response) (result ListReplicaEvent, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetPartitionRestartProgress gets the progress of a PartitionRestart started with StartPartitionRestart using the // provided OperationId. // Parameters: // serviceID - the identity of the service. This is typically the full name of the service without the // 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the service name is "fabric:/myapp/app1/svc1", the service identity would be // "myapp~app1~svc1" in 6.0+ and "myapp/app1/svc1" in previous versions. // partitionID - the identity of the partition. // operationID - a GUID that identifies a call of this API. This is passed into the corresponding GetProgress // API // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetPartitionRestartProgress(ctx context.Context, serviceID string, partitionID uuid.UUID, operationID uuid.UUID, timeout *int64) (result PartitionRestartProgress, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetPartitionRestartProgress") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetPartitionRestartProgress", err.Error()) } req, err := client.GetPartitionRestartProgressPreparer(ctx, serviceID, partitionID, operationID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionRestartProgress", nil, "Failure preparing request") return } resp, err := client.GetPartitionRestartProgressSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionRestartProgress", resp, "Failure sending request") return } result, err = client.GetPartitionRestartProgressResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionRestartProgress", resp, "Failure responding to request") return } return } // GetPartitionRestartProgressPreparer prepares the GetPartitionRestartProgress request. func (client BaseClient) GetPartitionRestartProgressPreparer(ctx context.Context, serviceID string, partitionID uuid.UUID, operationID uuid.UUID, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "partitionId": partitionID, "serviceId": serviceID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, "OperationId": autorest.Encode("query", operationID), } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Faults/Services/{serviceId}/$/GetPartitions/{partitionId}/$/GetRestartProgress", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetPartitionRestartProgressSender sends the GetPartitionRestartProgress request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetPartitionRestartProgressSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetPartitionRestartProgressResponder handles the response to the GetPartitionRestartProgress request. The method always // closes the http.Response Body. func (client BaseClient) GetPartitionRestartProgressResponder(resp *http.Response) (result PartitionRestartProgress, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetPartitionRestoreProgress returns information about the state of the latest restore operation along with details // or failure reason in case of completion. // Parameters: // partitionID - the identity of the partition. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetPartitionRestoreProgress(ctx context.Context, partitionID uuid.UUID, timeout *int64) (result RestoreProgressInfo, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetPartitionRestoreProgress") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetPartitionRestoreProgress", err.Error()) } req, err := client.GetPartitionRestoreProgressPreparer(ctx, partitionID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionRestoreProgress", nil, "Failure preparing request") return } resp, err := client.GetPartitionRestoreProgressSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionRestoreProgress", resp, "Failure sending request") return } result, err = client.GetPartitionRestoreProgressResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionRestoreProgress", resp, "Failure responding to request") return } return } // GetPartitionRestoreProgressPreparer prepares the GetPartitionRestoreProgress request. func (client BaseClient) GetPartitionRestoreProgressPreparer(ctx context.Context, partitionID uuid.UUID, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "partitionId": partitionID, } const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Partitions/{partitionId}/$/GetRestoreProgress", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetPartitionRestoreProgressSender sends the GetPartitionRestoreProgress request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetPartitionRestoreProgressSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetPartitionRestoreProgressResponder handles the response to the GetPartitionRestoreProgress request. The method always // closes the http.Response Body. func (client BaseClient) GetPartitionRestoreProgressResponder(resp *http.Response) (result RestoreProgressInfo, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetPartitionsEventList the response is list of PartitionEvent objects. // Parameters: // startTimeUtc - the start time of a lookup query in ISO UTC yyyy-MM-ddTHH:mm:ssZ. // endTimeUtc - the end time of a lookup query in ISO UTC yyyy-MM-ddTHH:mm:ssZ. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. // eventsTypesFilter - this is a comma separated string specifying the types of FabricEvents that should only // be included in the response. // excludeAnalysisEvents - this param disables the retrieval of AnalysisEvents if true is passed. // skipCorrelationLookup - this param disables the search of CorrelatedEvents information if true is passed. // otherwise the CorrelationEvents get processed and HasCorrelatedEvents field in every FabricEvent gets // populated. func (client BaseClient) GetPartitionsEventList(ctx context.Context, startTimeUtc string, endTimeUtc string, timeout *int64, eventsTypesFilter string, excludeAnalysisEvents *bool, skipCorrelationLookup *bool) (result ListPartitionEvent, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetPartitionsEventList") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetPartitionsEventList", err.Error()) } req, err := client.GetPartitionsEventListPreparer(ctx, startTimeUtc, endTimeUtc, timeout, eventsTypesFilter, excludeAnalysisEvents, skipCorrelationLookup) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionsEventList", nil, "Failure preparing request") return } resp, err := client.GetPartitionsEventListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionsEventList", resp, "Failure sending request") return } result, err = client.GetPartitionsEventListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPartitionsEventList", resp, "Failure responding to request") return } return } // GetPartitionsEventListPreparer prepares the GetPartitionsEventList request. func (client BaseClient) GetPartitionsEventListPreparer(ctx context.Context, startTimeUtc string, endTimeUtc string, timeout *int64, eventsTypesFilter string, excludeAnalysisEvents *bool, skipCorrelationLookup *bool) (*http.Request, error) { const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, "EndTimeUtc": autorest.Encode("query", endTimeUtc), "StartTimeUtc": autorest.Encode("query", startTimeUtc), } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } if len(eventsTypesFilter) > 0 { queryParameters["EventsTypesFilter"] = autorest.Encode("query", eventsTypesFilter) } if excludeAnalysisEvents != nil { queryParameters["ExcludeAnalysisEvents"] = autorest.Encode("query", *excludeAnalysisEvents) } if skipCorrelationLookup != nil { queryParameters["SkipCorrelationLookup"] = autorest.Encode("query", *skipCorrelationLookup) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/EventsStore/Partitions/Events"), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetPartitionsEventListSender sends the GetPartitionsEventList request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetPartitionsEventListSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetPartitionsEventListResponder handles the response to the GetPartitionsEventList request. The method always // closes the http.Response Body. func (client BaseClient) GetPartitionsEventListResponder(resp *http.Response) (result ListPartitionEvent, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetPropertyInfo gets the specified Service Fabric property under a given name. This will always return both value // and metadata. // Parameters: // nameID - the Service Fabric name, without the 'fabric:' URI scheme. // propertyName - specifies the name of the property to get. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetPropertyInfo(ctx context.Context, nameID string, propertyName string, timeout *int64) (result PropertyInfo, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetPropertyInfo") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetPropertyInfo", err.Error()) } req, err := client.GetPropertyInfoPreparer(ctx, nameID, propertyName, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPropertyInfo", nil, "Failure preparing request") return } resp, err := client.GetPropertyInfoSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPropertyInfo", resp, "Failure sending request") return } result, err = client.GetPropertyInfoResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPropertyInfo", resp, "Failure responding to request") return } return } // GetPropertyInfoPreparer prepares the GetPropertyInfo request. func (client BaseClient) GetPropertyInfoPreparer(ctx context.Context, nameID string, propertyName string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "nameId": nameID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, "PropertyName": autorest.Encode("query", propertyName), } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Names/{nameId}/$/GetProperty", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetPropertyInfoSender sends the GetPropertyInfo request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetPropertyInfoSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetPropertyInfoResponder handles the response to the GetPropertyInfo request. The method always // closes the http.Response Body. func (client BaseClient) GetPropertyInfoResponder(resp *http.Response) (result PropertyInfo, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetPropertyInfoList a Service Fabric name can have one or more named properties that stores custom information. This // operation gets the information about these properties in a paged list. The information include name, value and // metadata about each of the properties. // Parameters: // nameID - the Service Fabric name, without the 'fabric:' URI scheme. // includeValues - allows specifying whether to include the values of the properties returned. True if values // should be returned with the metadata; False to return only property metadata. // continuationToken - the continuation token parameter is used to obtain next set of results. A continuation // token with a non empty value is included in the response of the API when the results from the system do not // fit in a single response. When this value is passed to the next API call, the API returns next set of // results. If there are no further results then the continuation token does not contain a value. The value of // this parameter should not be URL encoded. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetPropertyInfoList(ctx context.Context, nameID string, includeValues *bool, continuationToken string, timeout *int64) (result PagedPropertyInfoList, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetPropertyInfoList") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetPropertyInfoList", err.Error()) } req, err := client.GetPropertyInfoListPreparer(ctx, nameID, includeValues, continuationToken, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPropertyInfoList", nil, "Failure preparing request") return } resp, err := client.GetPropertyInfoListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPropertyInfoList", resp, "Failure sending request") return } result, err = client.GetPropertyInfoListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetPropertyInfoList", resp, "Failure responding to request") return } return } // GetPropertyInfoListPreparer prepares the GetPropertyInfoList request. func (client BaseClient) GetPropertyInfoListPreparer(ctx context.Context, nameID string, includeValues *bool, continuationToken string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "nameId": nameID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if includeValues != nil { queryParameters["IncludeValues"] = autorest.Encode("query", *includeValues) } else { queryParameters["IncludeValues"] = autorest.Encode("query", false) } if len(continuationToken) > 0 { queryParameters["ContinuationToken"] = continuationToken } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Names/{nameId}/$/GetProperties", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetPropertyInfoListSender sends the GetPropertyInfoList request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetPropertyInfoListSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetPropertyInfoListResponder handles the response to the GetPropertyInfoList request. The method always // closes the http.Response Body. func (client BaseClient) GetPropertyInfoListResponder(resp *http.Response) (result PagedPropertyInfoList, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetProvisionedFabricCodeVersionInfoList gets a list of information about fabric code versions that are provisioned // in the cluster. The parameter CodeVersion can be used to optionally filter the output to only that particular // version. // Parameters: // codeVersion - the product version of Service Fabric. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetProvisionedFabricCodeVersionInfoList(ctx context.Context, codeVersion string, timeout *int64) (result ListFabricCodeVersionInfo, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetProvisionedFabricCodeVersionInfoList") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetProvisionedFabricCodeVersionInfoList", err.Error()) } req, err := client.GetProvisionedFabricCodeVersionInfoListPreparer(ctx, codeVersion, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetProvisionedFabricCodeVersionInfoList", nil, "Failure preparing request") return } resp, err := client.GetProvisionedFabricCodeVersionInfoListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetProvisionedFabricCodeVersionInfoList", resp, "Failure sending request") return } result, err = client.GetProvisionedFabricCodeVersionInfoListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetProvisionedFabricCodeVersionInfoList", resp, "Failure responding to request") return } return } // GetProvisionedFabricCodeVersionInfoListPreparer prepares the GetProvisionedFabricCodeVersionInfoList request. func (client BaseClient) GetProvisionedFabricCodeVersionInfoListPreparer(ctx context.Context, codeVersion string, timeout *int64) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if len(codeVersion) > 0 { queryParameters["CodeVersion"] = autorest.Encode("query", codeVersion) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/$/GetProvisionedCodeVersions"), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetProvisionedFabricCodeVersionInfoListSender sends the GetProvisionedFabricCodeVersionInfoList request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetProvisionedFabricCodeVersionInfoListSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetProvisionedFabricCodeVersionInfoListResponder handles the response to the GetProvisionedFabricCodeVersionInfoList request. The method always // closes the http.Response Body. func (client BaseClient) GetProvisionedFabricCodeVersionInfoListResponder(resp *http.Response) (result ListFabricCodeVersionInfo, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result.Value), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetProvisionedFabricConfigVersionInfoList gets a list of information about fabric config versions that are // provisioned in the cluster. The parameter ConfigVersion can be used to optionally filter the output to only that // particular version. // Parameters: // configVersion - the config version of Service Fabric. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetProvisionedFabricConfigVersionInfoList(ctx context.Context, configVersion string, timeout *int64) (result ListFabricConfigVersionInfo, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetProvisionedFabricConfigVersionInfoList") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetProvisionedFabricConfigVersionInfoList", err.Error()) } req, err := client.GetProvisionedFabricConfigVersionInfoListPreparer(ctx, configVersion, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetProvisionedFabricConfigVersionInfoList", nil, "Failure preparing request") return } resp, err := client.GetProvisionedFabricConfigVersionInfoListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetProvisionedFabricConfigVersionInfoList", resp, "Failure sending request") return } result, err = client.GetProvisionedFabricConfigVersionInfoListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetProvisionedFabricConfigVersionInfoList", resp, "Failure responding to request") return } return } // GetProvisionedFabricConfigVersionInfoListPreparer prepares the GetProvisionedFabricConfigVersionInfoList request. func (client BaseClient) GetProvisionedFabricConfigVersionInfoListPreparer(ctx context.Context, configVersion string, timeout *int64) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if len(configVersion) > 0 { queryParameters["ConfigVersion"] = autorest.Encode("query", configVersion) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/$/GetProvisionedConfigVersions"), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetProvisionedFabricConfigVersionInfoListSender sends the GetProvisionedFabricConfigVersionInfoList request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetProvisionedFabricConfigVersionInfoListSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetProvisionedFabricConfigVersionInfoListResponder handles the response to the GetProvisionedFabricConfigVersionInfoList request. The method always // closes the http.Response Body. func (client BaseClient) GetProvisionedFabricConfigVersionInfoListResponder(resp *http.Response) (result ListFabricConfigVersionInfo, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result.Value), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetQuorumLossProgress gets the progress of a quorum loss operation started with StartQuorumLoss, using the provided // OperationId. // Parameters: // serviceID - the identity of the service. This is typically the full name of the service without the // 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the service name is "fabric:/myapp/app1/svc1", the service identity would be // "myapp~app1~svc1" in 6.0+ and "myapp/app1/svc1" in previous versions. // partitionID - the identity of the partition. // operationID - a GUID that identifies a call of this API. This is passed into the corresponding GetProgress // API // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetQuorumLossProgress(ctx context.Context, serviceID string, partitionID uuid.UUID, operationID uuid.UUID, timeout *int64) (result PartitionQuorumLossProgress, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetQuorumLossProgress") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetQuorumLossProgress", err.Error()) } req, err := client.GetQuorumLossProgressPreparer(ctx, serviceID, partitionID, operationID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetQuorumLossProgress", nil, "Failure preparing request") return } resp, err := client.GetQuorumLossProgressSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetQuorumLossProgress", resp, "Failure sending request") return } result, err = client.GetQuorumLossProgressResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetQuorumLossProgress", resp, "Failure responding to request") return } return } // GetQuorumLossProgressPreparer prepares the GetQuorumLossProgress request. func (client BaseClient) GetQuorumLossProgressPreparer(ctx context.Context, serviceID string, partitionID uuid.UUID, operationID uuid.UUID, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "partitionId": partitionID, "serviceId": serviceID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, "OperationId": autorest.Encode("query", operationID), } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Faults/Services/{serviceId}/$/GetPartitions/{partitionId}/$/GetQuorumLossProgress", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetQuorumLossProgressSender sends the GetQuorumLossProgress request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetQuorumLossProgressSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetQuorumLossProgressResponder handles the response to the GetQuorumLossProgress request. The method always // closes the http.Response Body. func (client BaseClient) GetQuorumLossProgressResponder(resp *http.Response) (result PartitionQuorumLossProgress, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetRepairTaskList this API supports the Service Fabric platform; it is not meant to be used directly from your code. // Parameters: // taskIDFilter - the repair task ID prefix to be matched. // stateFilter - a bitwise-OR of the following values, specifying which task states should be included in the // result list. // - 1 - Created // - 2 - Claimed // - 4 - Preparing // - 8 - Approved // - 16 - Executing // - 32 - Restoring // - 64 - Completed // executorFilter - the name of the repair executor whose claimed tasks should be included in the list. func (client BaseClient) GetRepairTaskList(ctx context.Context, taskIDFilter string, stateFilter *int32, executorFilter string) (result ListRepairTask, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetRepairTaskList") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } req, err := client.GetRepairTaskListPreparer(ctx, taskIDFilter, stateFilter, executorFilter) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetRepairTaskList", nil, "Failure preparing request") return } resp, err := client.GetRepairTaskListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetRepairTaskList", resp, "Failure sending request") return } result, err = client.GetRepairTaskListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetRepairTaskList", resp, "Failure responding to request") return } return } // GetRepairTaskListPreparer prepares the GetRepairTaskList request. func (client BaseClient) GetRepairTaskListPreparer(ctx context.Context, taskIDFilter string, stateFilter *int32, executorFilter string) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if len(taskIDFilter) > 0 { queryParameters["TaskIdFilter"] = autorest.Encode("query", taskIDFilter) } if stateFilter != nil { queryParameters["StateFilter"] = autorest.Encode("query", *stateFilter) } if len(executorFilter) > 0 { queryParameters["ExecutorFilter"] = autorest.Encode("query", executorFilter) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/$/GetRepairTaskList"), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetRepairTaskListSender sends the GetRepairTaskList request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetRepairTaskListSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetRepairTaskListResponder handles the response to the GetRepairTaskList request. The method always // closes the http.Response Body. func (client BaseClient) GetRepairTaskListResponder(resp *http.Response) (result ListRepairTask, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result.Value), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetReplicaHealth gets the health of a Service Fabric replica. // Use EventsHealthStateFilter to filter the collection of health events reported on the replica based on the health // state. // Parameters: // partitionID - the identity of the partition. // replicaID - the identifier of the replica. // eventsHealthStateFilter - allows filtering the collection of HealthEvent objects returned based on health // state. // The possible values for this parameter include integer value of one of the following health states. // Only events that match the filter are returned. All events are used to evaluate the aggregated health state. // If not specified, all entries are returned. The state values are flag based enumeration, so the value could // be a combination of these value obtained using bitwise 'OR' operator. For example, If the provided value is // 6 then all of the events with HealthState value of OK (2) and Warning (4) are returned. // // - Default - Default value. Matches any HealthState. The value is zero. // - None - Filter that doesn't match any HealthState value. Used in order to return no results on a given // collection of states. The value is 1. // - Ok - Filter that matches input with HealthState value Ok. The value is 2. // - Warning - Filter that matches input with HealthState value Warning. The value is 4. // - Error - Filter that matches input with HealthState value Error. The value is 8. // - All - Filter that matches input with any HealthState value. The value is 65535. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetReplicaHealth(ctx context.Context, partitionID uuid.UUID, replicaID string, eventsHealthStateFilter *int32, timeout *int64) (result ReplicaHealthModel, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetReplicaHealth") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetReplicaHealth", err.Error()) } req, err := client.GetReplicaHealthPreparer(ctx, partitionID, replicaID, eventsHealthStateFilter, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetReplicaHealth", nil, "Failure preparing request") return } resp, err := client.GetReplicaHealthSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetReplicaHealth", resp, "Failure sending request") return } result, err = client.GetReplicaHealthResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetReplicaHealth", resp, "Failure responding to request") return } return } // GetReplicaHealthPreparer prepares the GetReplicaHealth request. func (client BaseClient) GetReplicaHealthPreparer(ctx context.Context, partitionID uuid.UUID, replicaID string, eventsHealthStateFilter *int32, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "partitionId": partitionID, "replicaId": replicaID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if eventsHealthStateFilter != nil { queryParameters["EventsHealthStateFilter"] = autorest.Encode("query", *eventsHealthStateFilter) } else { queryParameters["EventsHealthStateFilter"] = autorest.Encode("query", 0) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Partitions/{partitionId}/$/GetReplicas/{replicaId}/$/GetHealth", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetReplicaHealthSender sends the GetReplicaHealth request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetReplicaHealthSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetReplicaHealthResponder handles the response to the GetReplicaHealth request. The method always // closes the http.Response Body. func (client BaseClient) GetReplicaHealthResponder(resp *http.Response) (result ReplicaHealthModel, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetReplicaHealthUsingPolicy gets the health of a Service Fabric stateful service replica or stateless service // instance. // Use EventsHealthStateFilter to filter the collection of health events reported on the cluster based on the health // state. // Use ApplicationHealthPolicy to optionally override the health policies used to evaluate the health. This API only // uses 'ConsiderWarningAsError' field of the ApplicationHealthPolicy. The rest of the fields are ignored while // evaluating the health of the replica. // Parameters: // partitionID - the identity of the partition. // replicaID - the identifier of the replica. // eventsHealthStateFilter - allows filtering the collection of HealthEvent objects returned based on health // state. // The possible values for this parameter include integer value of one of the following health states. // Only events that match the filter are returned. All events are used to evaluate the aggregated health state. // If not specified, all entries are returned. The state values are flag based enumeration, so the value could // be a combination of these value obtained using bitwise 'OR' operator. For example, If the provided value is // 6 then all of the events with HealthState value of OK (2) and Warning (4) are returned. // // - Default - Default value. Matches any HealthState. The value is zero. // - None - Filter that doesn't match any HealthState value. Used in order to return no results on a given // collection of states. The value is 1. // - Ok - Filter that matches input with HealthState value Ok. The value is 2. // - Warning - Filter that matches input with HealthState value Warning. The value is 4. // - Error - Filter that matches input with HealthState value Error. The value is 8. // - All - Filter that matches input with any HealthState value. The value is 65535. // applicationHealthPolicy - describes the health policies used to evaluate the health of an application or one // of its children. // If not present, the health evaluation uses the health policy from application manifest or the default health // policy. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetReplicaHealthUsingPolicy(ctx context.Context, partitionID uuid.UUID, replicaID string, eventsHealthStateFilter *int32, applicationHealthPolicy *ApplicationHealthPolicy, timeout *int64) (result ReplicaHealthModel, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetReplicaHealthUsingPolicy") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetReplicaHealthUsingPolicy", err.Error()) } req, err := client.GetReplicaHealthUsingPolicyPreparer(ctx, partitionID, replicaID, eventsHealthStateFilter, applicationHealthPolicy, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetReplicaHealthUsingPolicy", nil, "Failure preparing request") return } resp, err := client.GetReplicaHealthUsingPolicySender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetReplicaHealthUsingPolicy", resp, "Failure sending request") return } result, err = client.GetReplicaHealthUsingPolicyResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetReplicaHealthUsingPolicy", resp, "Failure responding to request") return } return } // GetReplicaHealthUsingPolicyPreparer prepares the GetReplicaHealthUsingPolicy request. func (client BaseClient) GetReplicaHealthUsingPolicyPreparer(ctx context.Context, partitionID uuid.UUID, replicaID string, eventsHealthStateFilter *int32, applicationHealthPolicy *ApplicationHealthPolicy, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "partitionId": partitionID, "replicaId": replicaID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if eventsHealthStateFilter != nil { queryParameters["EventsHealthStateFilter"] = autorest.Encode("query", *eventsHealthStateFilter) } else { queryParameters["EventsHealthStateFilter"] = autorest.Encode("query", 0) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Partitions/{partitionId}/$/GetReplicas/{replicaId}/$/GetHealth", pathParameters), autorest.WithQueryParameters(queryParameters)) if applicationHealthPolicy != nil { preparer = autorest.DecoratePreparer(preparer, autorest.WithJSON(applicationHealthPolicy)) } return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetReplicaHealthUsingPolicySender sends the GetReplicaHealthUsingPolicy request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetReplicaHealthUsingPolicySender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetReplicaHealthUsingPolicyResponder handles the response to the GetReplicaHealthUsingPolicy request. The method always // closes the http.Response Body. func (client BaseClient) GetReplicaHealthUsingPolicyResponder(resp *http.Response) (result ReplicaHealthModel, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetReplicaInfo the response includes the id, role, status, health, node name, uptime, and other details about the // replica. // Parameters: // partitionID - the identity of the partition. // replicaID - the identifier of the replica. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetReplicaInfo(ctx context.Context, partitionID uuid.UUID, replicaID string, timeout *int64) (result ReplicaInfoModel, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetReplicaInfo") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetReplicaInfo", err.Error()) } req, err := client.GetReplicaInfoPreparer(ctx, partitionID, replicaID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetReplicaInfo", nil, "Failure preparing request") return } resp, err := client.GetReplicaInfoSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetReplicaInfo", resp, "Failure sending request") return } result, err = client.GetReplicaInfoResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetReplicaInfo", resp, "Failure responding to request") return } return } // GetReplicaInfoPreparer prepares the GetReplicaInfo request. func (client BaseClient) GetReplicaInfoPreparer(ctx context.Context, partitionID uuid.UUID, replicaID string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "partitionId": partitionID, "replicaId": replicaID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Partitions/{partitionId}/$/GetReplicas/{replicaId}", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetReplicaInfoSender sends the GetReplicaInfo request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetReplicaInfoSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetReplicaInfoResponder handles the response to the GetReplicaInfo request. The method always // closes the http.Response Body. func (client BaseClient) GetReplicaInfoResponder(resp *http.Response) (result ReplicaInfoModel, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusNoContent), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetReplicaInfoList the GetReplicas endpoint returns information about the replicas of the specified partition. The // response includes the id, role, status, health, node name, uptime, and other details about the replica. // Parameters: // partitionID - the identity of the partition. // continuationToken - the continuation token parameter is used to obtain next set of results. A continuation // token with a non empty value is included in the response of the API when the results from the system do not // fit in a single response. When this value is passed to the next API call, the API returns next set of // results. If there are no further results then the continuation token does not contain a value. The value of // this parameter should not be URL encoded. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetReplicaInfoList(ctx context.Context, partitionID uuid.UUID, continuationToken string, timeout *int64) (result PagedReplicaInfoList, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetReplicaInfoList") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetReplicaInfoList", err.Error()) } req, err := client.GetReplicaInfoListPreparer(ctx, partitionID, continuationToken, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetReplicaInfoList", nil, "Failure preparing request") return } resp, err := client.GetReplicaInfoListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetReplicaInfoList", resp, "Failure sending request") return } result, err = client.GetReplicaInfoListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetReplicaInfoList", resp, "Failure responding to request") return } return } // GetReplicaInfoListPreparer prepares the GetReplicaInfoList request. func (client BaseClient) GetReplicaInfoListPreparer(ctx context.Context, partitionID uuid.UUID, continuationToken string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "partitionId": partitionID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if len(continuationToken) > 0 { queryParameters["ContinuationToken"] = continuationToken } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Partitions/{partitionId}/$/GetReplicas", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetReplicaInfoListSender sends the GetReplicaInfoList request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetReplicaInfoListSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetReplicaInfoListResponder handles the response to the GetReplicaInfoList request. The method always // closes the http.Response Body. func (client BaseClient) GetReplicaInfoListResponder(resp *http.Response) (result PagedReplicaInfoList, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetServiceBackupConfigurationInfo gets the Service Fabric backup configuration information for the service and the // partitions under this service. // Parameters: // serviceID - the identity of the service. This is typically the full name of the service without the // 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the service name is "fabric:/myapp/app1/svc1", the service identity would be // "myapp~app1~svc1" in 6.0+ and "myapp/app1/svc1" in previous versions. // continuationToken - the continuation token parameter is used to obtain next set of results. A continuation // token with a non empty value is included in the response of the API when the results from the system do not // fit in a single response. When this value is passed to the next API call, the API returns next set of // results. If there are no further results then the continuation token does not contain a value. The value of // this parameter should not be URL encoded. // maxResults - the maximum number of results to be returned as part of the paged queries. This parameter // defines the upper bound on the number of results returned. The results returned can be less than the // specified maximum results if they do not fit in the message as per the max message size restrictions defined // in the configuration. If this parameter is zero or not specified, the paged queries includes as many results // as possible that fit in the return message. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetServiceBackupConfigurationInfo(ctx context.Context, serviceID string, continuationToken string, maxResults *int64, timeout *int64) (result PagedBackupConfigurationInfoList, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetServiceBackupConfigurationInfo") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: maxResults, Constraints: []validation.Constraint{{Target: "maxResults", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "maxResults", Name: validation.InclusiveMinimum, Rule: int64(0), Chain: nil}}}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetServiceBackupConfigurationInfo", err.Error()) } req, err := client.GetServiceBackupConfigurationInfoPreparer(ctx, serviceID, continuationToken, maxResults, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetServiceBackupConfigurationInfo", nil, "Failure preparing request") return } resp, err := client.GetServiceBackupConfigurationInfoSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetServiceBackupConfigurationInfo", resp, "Failure sending request") return } result, err = client.GetServiceBackupConfigurationInfoResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetServiceBackupConfigurationInfo", resp, "Failure responding to request") return } return } // GetServiceBackupConfigurationInfoPreparer prepares the GetServiceBackupConfigurationInfo request. func (client BaseClient) GetServiceBackupConfigurationInfoPreparer(ctx context.Context, serviceID string, continuationToken string, maxResults *int64, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "serviceId": serviceID, } const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if len(continuationToken) > 0 { queryParameters["ContinuationToken"] = continuationToken } if maxResults != nil { queryParameters["MaxResults"] = autorest.Encode("query", *maxResults) } else { queryParameters["MaxResults"] = autorest.Encode("query", 0) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Services/{serviceId}/$/GetBackupConfigurationInfo", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetServiceBackupConfigurationInfoSender sends the GetServiceBackupConfigurationInfo request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetServiceBackupConfigurationInfoSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetServiceBackupConfigurationInfoResponder handles the response to the GetServiceBackupConfigurationInfo request. The method always // closes the http.Response Body. func (client BaseClient) GetServiceBackupConfigurationInfoResponder(resp *http.Response) (result PagedBackupConfigurationInfoList, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetServiceBackupList returns a list of backups available for every partition in this Service Fabric service. The // server enumerates all the backups available in the backup store configured in the backup policy. It also allows // filtering of the result based on start and end datetime or just fetching the latest available backup for every // partition. // Parameters: // serviceID - the identity of the service. This is typically the full name of the service without the // 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the service name is "fabric:/myapp/app1/svc1", the service identity would be // "myapp~app1~svc1" in 6.0+ and "myapp/app1/svc1" in previous versions. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. // latest - specifies whether to get only the most recent backup available for a partition for the specified // time range. // startDateTimeFilter - specify the start date time from which to enumerate backups, in datetime format. The // date time must be specified in ISO8601 format. This is an optional parameter. If not specified, all backups // from the beginning are enumerated. // endDateTimeFilter - specify the end date time till which to enumerate backups, in datetime format. The date // time must be specified in ISO8601 format. This is an optional parameter. If not specified, enumeration is // done till the most recent backup. // continuationToken - the continuation token parameter is used to obtain next set of results. A continuation // token with a non empty value is included in the response of the API when the results from the system do not // fit in a single response. When this value is passed to the next API call, the API returns next set of // results. If there are no further results then the continuation token does not contain a value. The value of // this parameter should not be URL encoded. // maxResults - the maximum number of results to be returned as part of the paged queries. This parameter // defines the upper bound on the number of results returned. The results returned can be less than the // specified maximum results if they do not fit in the message as per the max message size restrictions defined // in the configuration. If this parameter is zero or not specified, the paged queries includes as many results // as possible that fit in the return message. func (client BaseClient) GetServiceBackupList(ctx context.Context, serviceID string, timeout *int64, latest *bool, startDateTimeFilter *date.Time, endDateTimeFilter *date.Time, continuationToken string, maxResults *int64) (result PagedBackupInfoList, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetServiceBackupList") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}, {TargetValue: maxResults, Constraints: []validation.Constraint{{Target: "maxResults", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "maxResults", Name: validation.InclusiveMinimum, Rule: int64(0), Chain: nil}}}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetServiceBackupList", err.Error()) } req, err := client.GetServiceBackupListPreparer(ctx, serviceID, timeout, latest, startDateTimeFilter, endDateTimeFilter, continuationToken, maxResults) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetServiceBackupList", nil, "Failure preparing request") return } resp, err := client.GetServiceBackupListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetServiceBackupList", resp, "Failure sending request") return } result, err = client.GetServiceBackupListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetServiceBackupList", resp, "Failure responding to request") return } return } // GetServiceBackupListPreparer prepares the GetServiceBackupList request. func (client BaseClient) GetServiceBackupListPreparer(ctx context.Context, serviceID string, timeout *int64, latest *bool, startDateTimeFilter *date.Time, endDateTimeFilter *date.Time, continuationToken string, maxResults *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "serviceId": serviceID, } const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } if latest != nil { queryParameters["Latest"] = autorest.Encode("query", *latest) } else { queryParameters["Latest"] = autorest.Encode("query", false) } if startDateTimeFilter != nil { queryParameters["StartDateTimeFilter"] = autorest.Encode("query", *startDateTimeFilter) } if endDateTimeFilter != nil { queryParameters["EndDateTimeFilter"] = autorest.Encode("query", *endDateTimeFilter) } if len(continuationToken) > 0 { queryParameters["ContinuationToken"] = continuationToken } if maxResults != nil { queryParameters["MaxResults"] = autorest.Encode("query", *maxResults) } else { queryParameters["MaxResults"] = autorest.Encode("query", 0) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Services/{serviceId}/$/GetBackups", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetServiceBackupListSender sends the GetServiceBackupList request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetServiceBackupListSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetServiceBackupListResponder handles the response to the GetServiceBackupList request. The method always // closes the http.Response Body. func (client BaseClient) GetServiceBackupListResponder(resp *http.Response) (result PagedBackupInfoList, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetServiceDescription gets the description of an existing Service Fabric service. A service must be created before // its description can be obtained. // Parameters: // serviceID - the identity of the service. This is typically the full name of the service without the // 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the service name is "fabric:/myapp/app1/svc1", the service identity would be // "myapp~app1~svc1" in 6.0+ and "myapp/app1/svc1" in previous versions. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetServiceDescription(ctx context.Context, serviceID string, timeout *int64) (result ServiceDescriptionModel, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetServiceDescription") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetServiceDescription", err.Error()) } req, err := client.GetServiceDescriptionPreparer(ctx, serviceID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetServiceDescription", nil, "Failure preparing request") return } resp, err := client.GetServiceDescriptionSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetServiceDescription", resp, "Failure sending request") return } result, err = client.GetServiceDescriptionResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetServiceDescription", resp, "Failure responding to request") return } return } // GetServiceDescriptionPreparer prepares the GetServiceDescription request. func (client BaseClient) GetServiceDescriptionPreparer(ctx context.Context, serviceID string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "serviceId": serviceID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Services/{serviceId}/$/GetDescription", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetServiceDescriptionSender sends the GetServiceDescription request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetServiceDescriptionSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetServiceDescriptionResponder handles the response to the GetServiceDescription request. The method always // closes the http.Response Body. func (client BaseClient) GetServiceDescriptionResponder(resp *http.Response) (result ServiceDescriptionModel, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetServiceEventList the response is list of ServiceEvent objects. // Parameters: // serviceID - the identity of the service. This is typically the full name of the service without the // 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the service name is "fabric:/myapp/app1/svc1", the service identity would be // "myapp~app1~svc1" in 6.0+ and "myapp/app1/svc1" in previous versions. // startTimeUtc - the start time of a lookup query in ISO UTC yyyy-MM-ddTHH:mm:ssZ. // endTimeUtc - the end time of a lookup query in ISO UTC yyyy-MM-ddTHH:mm:ssZ. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. // eventsTypesFilter - this is a comma separated string specifying the types of FabricEvents that should only // be included in the response. // excludeAnalysisEvents - this param disables the retrieval of AnalysisEvents if true is passed. // skipCorrelationLookup - this param disables the search of CorrelatedEvents information if true is passed. // otherwise the CorrelationEvents get processed and HasCorrelatedEvents field in every FabricEvent gets // populated. func (client BaseClient) GetServiceEventList(ctx context.Context, serviceID string, startTimeUtc string, endTimeUtc string, timeout *int64, eventsTypesFilter string, excludeAnalysisEvents *bool, skipCorrelationLookup *bool) (result ListServiceEvent, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetServiceEventList") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetServiceEventList", err.Error()) } req, err := client.GetServiceEventListPreparer(ctx, serviceID, startTimeUtc, endTimeUtc, timeout, eventsTypesFilter, excludeAnalysisEvents, skipCorrelationLookup) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetServiceEventList", nil, "Failure preparing request") return } resp, err := client.GetServiceEventListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetServiceEventList", resp, "Failure sending request") return } result, err = client.GetServiceEventListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetServiceEventList", resp, "Failure responding to request") return } return } // GetServiceEventListPreparer prepares the GetServiceEventList request. func (client BaseClient) GetServiceEventListPreparer(ctx context.Context, serviceID string, startTimeUtc string, endTimeUtc string, timeout *int64, eventsTypesFilter string, excludeAnalysisEvents *bool, skipCorrelationLookup *bool) (*http.Request, error) { pathParameters := map[string]interface{}{ "serviceId": serviceID, } const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, "EndTimeUtc": autorest.Encode("query", endTimeUtc), "StartTimeUtc": autorest.Encode("query", startTimeUtc), } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } if len(eventsTypesFilter) > 0 { queryParameters["EventsTypesFilter"] = autorest.Encode("query", eventsTypesFilter) } if excludeAnalysisEvents != nil { queryParameters["ExcludeAnalysisEvents"] = autorest.Encode("query", *excludeAnalysisEvents) } if skipCorrelationLookup != nil { queryParameters["SkipCorrelationLookup"] = autorest.Encode("query", *skipCorrelationLookup) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/EventsStore/Services/{serviceId}/$/Events", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetServiceEventListSender sends the GetServiceEventList request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetServiceEventListSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetServiceEventListResponder handles the response to the GetServiceEventList request. The method always // closes the http.Response Body. func (client BaseClient) GetServiceEventListResponder(resp *http.Response) (result ListServiceEvent, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetServiceHealth gets the health information of the specified service. // Use EventsHealthStateFilter to filter the collection of health events reported on the service based on the health // state. // Use PartitionsHealthStateFilter to filter the collection of partitions returned. // If you specify a service that does not exist in the health store, this request returns an error. // Parameters: // serviceID - the identity of the service. This is typically the full name of the service without the // 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the service name is "fabric:/myapp/app1/svc1", the service identity would be // "myapp~app1~svc1" in 6.0+ and "myapp/app1/svc1" in previous versions. // eventsHealthStateFilter - allows filtering the collection of HealthEvent objects returned based on health // state. // The possible values for this parameter include integer value of one of the following health states. // Only events that match the filter are returned. All events are used to evaluate the aggregated health state. // If not specified, all entries are returned. The state values are flag based enumeration, so the value could // be a combination of these value obtained using bitwise 'OR' operator. For example, If the provided value is // 6 then all of the events with HealthState value of OK (2) and Warning (4) are returned. // // - Default - Default value. Matches any HealthState. The value is zero. // - None - Filter that doesn't match any HealthState value. Used in order to return no results on a given // collection of states. The value is 1. // - Ok - Filter that matches input with HealthState value Ok. The value is 2. // - Warning - Filter that matches input with HealthState value Warning. The value is 4. // - Error - Filter that matches input with HealthState value Error. The value is 8. // - All - Filter that matches input with any HealthState value. The value is 65535. // partitionsHealthStateFilter - allows filtering of the partitions health state objects returned in the result // of service health query based on their health state. // The possible values for this parameter include integer value of one of the following health states. // Only partitions that match the filter are returned. All partitions are used to evaluate the aggregated // health state. // If not specified, all entries are returned. The state values are flag based enumeration, so the value could // be a combination of these value // obtained using bitwise 'OR' operator. For example, if the provided value is 6 then health state of // partitions with HealthState value of OK (2) and Warning (4) will be returned. // // - Default - Default value. Matches any HealthState. The value is zero. // - None - Filter that doesn't match any HealthState value. Used in order to return no results on a given // collection of states. The value is 1. // - Ok - Filter that matches input with HealthState value Ok. The value is 2. // - Warning - Filter that matches input with HealthState value Warning. The value is 4. // - Error - Filter that matches input with HealthState value Error. The value is 8. // - All - Filter that matches input with any HealthState value. The value is 65535. // excludeHealthStatistics - indicates whether the health statistics should be returned as part of the query // result. False by default. // The statistics show the number of children entities in health state Ok, Warning, and Error. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetServiceHealth(ctx context.Context, serviceID string, eventsHealthStateFilter *int32, partitionsHealthStateFilter *int32, excludeHealthStatistics *bool, timeout *int64) (result ServiceHealth, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetServiceHealth") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetServiceHealth", err.Error()) } req, err := client.GetServiceHealthPreparer(ctx, serviceID, eventsHealthStateFilter, partitionsHealthStateFilter, excludeHealthStatistics, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetServiceHealth", nil, "Failure preparing request") return } resp, err := client.GetServiceHealthSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetServiceHealth", resp, "Failure sending request") return } result, err = client.GetServiceHealthResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetServiceHealth", resp, "Failure responding to request") return } return } // GetServiceHealthPreparer prepares the GetServiceHealth request. func (client BaseClient) GetServiceHealthPreparer(ctx context.Context, serviceID string, eventsHealthStateFilter *int32, partitionsHealthStateFilter *int32, excludeHealthStatistics *bool, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "serviceId": serviceID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if eventsHealthStateFilter != nil { queryParameters["EventsHealthStateFilter"] = autorest.Encode("query", *eventsHealthStateFilter) } else { queryParameters["EventsHealthStateFilter"] = autorest.Encode("query", 0) } if partitionsHealthStateFilter != nil { queryParameters["PartitionsHealthStateFilter"] = autorest.Encode("query", *partitionsHealthStateFilter) } else { queryParameters["PartitionsHealthStateFilter"] = autorest.Encode("query", 0) } if excludeHealthStatistics != nil { queryParameters["ExcludeHealthStatistics"] = autorest.Encode("query", *excludeHealthStatistics) } else { queryParameters["ExcludeHealthStatistics"] = autorest.Encode("query", false) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Services/{serviceId}/$/GetHealth", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetServiceHealthSender sends the GetServiceHealth request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetServiceHealthSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetServiceHealthResponder handles the response to the GetServiceHealth request. The method always // closes the http.Response Body. func (client BaseClient) GetServiceHealthResponder(resp *http.Response) (result ServiceHealth, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetServiceHealthUsingPolicy gets the health information of the specified service. // If the application health policy is specified, the health evaluation uses it to get the aggregated health state. // If the policy is not specified, the health evaluation uses the application health policy defined in the application // manifest, or the default health policy, if no policy is defined in the manifest. // Use EventsHealthStateFilter to filter the collection of health events reported on the service based on the health // state. // Use PartitionsHealthStateFilter to filter the collection of partitions returned. // If you specify a service that does not exist in the health store, this request returns an error. // Parameters: // serviceID - the identity of the service. This is typically the full name of the service without the // 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the service name is "fabric:/myapp/app1/svc1", the service identity would be // "myapp~app1~svc1" in 6.0+ and "myapp/app1/svc1" in previous versions. // eventsHealthStateFilter - allows filtering the collection of HealthEvent objects returned based on health // state. // The possible values for this parameter include integer value of one of the following health states. // Only events that match the filter are returned. All events are used to evaluate the aggregated health state. // If not specified, all entries are returned. The state values are flag based enumeration, so the value could // be a combination of these value obtained using bitwise 'OR' operator. For example, If the provided value is // 6 then all of the events with HealthState value of OK (2) and Warning (4) are returned. // // - Default - Default value. Matches any HealthState. The value is zero. // - None - Filter that doesn't match any HealthState value. Used in order to return no results on a given // collection of states. The value is 1. // - Ok - Filter that matches input with HealthState value Ok. The value is 2. // - Warning - Filter that matches input with HealthState value Warning. The value is 4. // - Error - Filter that matches input with HealthState value Error. The value is 8. // - All - Filter that matches input with any HealthState value. The value is 65535. // partitionsHealthStateFilter - allows filtering of the partitions health state objects returned in the result // of service health query based on their health state. // The possible values for this parameter include integer value of one of the following health states. // Only partitions that match the filter are returned. All partitions are used to evaluate the aggregated // health state. // If not specified, all entries are returned. The state values are flag based enumeration, so the value could // be a combination of these value // obtained using bitwise 'OR' operator. For example, if the provided value is 6 then health state of // partitions with HealthState value of OK (2) and Warning (4) will be returned. // // - Default - Default value. Matches any HealthState. The value is zero. // - None - Filter that doesn't match any HealthState value. Used in order to return no results on a given // collection of states. The value is 1. // - Ok - Filter that matches input with HealthState value Ok. The value is 2. // - Warning - Filter that matches input with HealthState value Warning. The value is 4. // - Error - Filter that matches input with HealthState value Error. The value is 8. // - All - Filter that matches input with any HealthState value. The value is 65535. // applicationHealthPolicy - describes the health policies used to evaluate the health of an application or one // of its children. // If not present, the health evaluation uses the health policy from application manifest or the default health // policy. // excludeHealthStatistics - indicates whether the health statistics should be returned as part of the query // result. False by default. // The statistics show the number of children entities in health state Ok, Warning, and Error. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetServiceHealthUsingPolicy(ctx context.Context, serviceID string, eventsHealthStateFilter *int32, partitionsHealthStateFilter *int32, applicationHealthPolicy *ApplicationHealthPolicy, excludeHealthStatistics *bool, timeout *int64) (result ServiceHealth, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetServiceHealthUsingPolicy") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetServiceHealthUsingPolicy", err.Error()) } req, err := client.GetServiceHealthUsingPolicyPreparer(ctx, serviceID, eventsHealthStateFilter, partitionsHealthStateFilter, applicationHealthPolicy, excludeHealthStatistics, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetServiceHealthUsingPolicy", nil, "Failure preparing request") return } resp, err := client.GetServiceHealthUsingPolicySender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetServiceHealthUsingPolicy", resp, "Failure sending request") return } result, err = client.GetServiceHealthUsingPolicyResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetServiceHealthUsingPolicy", resp, "Failure responding to request") return } return } // GetServiceHealthUsingPolicyPreparer prepares the GetServiceHealthUsingPolicy request. func (client BaseClient) GetServiceHealthUsingPolicyPreparer(ctx context.Context, serviceID string, eventsHealthStateFilter *int32, partitionsHealthStateFilter *int32, applicationHealthPolicy *ApplicationHealthPolicy, excludeHealthStatistics *bool, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "serviceId": serviceID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if eventsHealthStateFilter != nil { queryParameters["EventsHealthStateFilter"] = autorest.Encode("query", *eventsHealthStateFilter) } else { queryParameters["EventsHealthStateFilter"] = autorest.Encode("query", 0) } if partitionsHealthStateFilter != nil { queryParameters["PartitionsHealthStateFilter"] = autorest.Encode("query", *partitionsHealthStateFilter) } else { queryParameters["PartitionsHealthStateFilter"] = autorest.Encode("query", 0) } if excludeHealthStatistics != nil { queryParameters["ExcludeHealthStatistics"] = autorest.Encode("query", *excludeHealthStatistics) } else { queryParameters["ExcludeHealthStatistics"] = autorest.Encode("query", false) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Services/{serviceId}/$/GetHealth", pathParameters), autorest.WithQueryParameters(queryParameters)) if applicationHealthPolicy != nil { preparer = autorest.DecoratePreparer(preparer, autorest.WithJSON(applicationHealthPolicy)) } return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetServiceHealthUsingPolicySender sends the GetServiceHealthUsingPolicy request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetServiceHealthUsingPolicySender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetServiceHealthUsingPolicyResponder handles the response to the GetServiceHealthUsingPolicy request. The method always // closes the http.Response Body. func (client BaseClient) GetServiceHealthUsingPolicyResponder(resp *http.Response) (result ServiceHealth, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetServiceInfo returns the information about the specified service belonging to the specified Service Fabric // application. // Parameters: // applicationID - the identity of the application. This is typically the full name of the application without // the 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the application name is "fabric:/myapp/app1", the application identity would be "myapp~app1" // in 6.0+ and "myapp/app1" in previous versions. // serviceID - the identity of the service. This is typically the full name of the service without the // 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the service name is "fabric:/myapp/app1/svc1", the service identity would be // "myapp~app1~svc1" in 6.0+ and "myapp/app1/svc1" in previous versions. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetServiceInfo(ctx context.Context, applicationID string, serviceID string, timeout *int64) (result ServiceInfoModel, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetServiceInfo") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetServiceInfo", err.Error()) } req, err := client.GetServiceInfoPreparer(ctx, applicationID, serviceID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetServiceInfo", nil, "Failure preparing request") return } resp, err := client.GetServiceInfoSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetServiceInfo", resp, "Failure sending request") return } result, err = client.GetServiceInfoResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetServiceInfo", resp, "Failure responding to request") return } return } // GetServiceInfoPreparer prepares the GetServiceInfo request. func (client BaseClient) GetServiceInfoPreparer(ctx context.Context, applicationID string, serviceID string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationId": applicationID, "serviceId": serviceID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Applications/{applicationId}/$/GetServices/{serviceId}", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetServiceInfoSender sends the GetServiceInfo request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetServiceInfoSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetServiceInfoResponder handles the response to the GetServiceInfo request. The method always // closes the http.Response Body. func (client BaseClient) GetServiceInfoResponder(resp *http.Response) (result ServiceInfoModel, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusNoContent), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetServiceInfoList returns the information about all services belonging to the application specified by the // application id. // Parameters: // applicationID - the identity of the application. This is typically the full name of the application without // the 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the application name is "fabric:/myapp/app1", the application identity would be "myapp~app1" // in 6.0+ and "myapp/app1" in previous versions. // serviceTypeName - the service type name used to filter the services to query for. // continuationToken - the continuation token parameter is used to obtain next set of results. A continuation // token with a non empty value is included in the response of the API when the results from the system do not // fit in a single response. When this value is passed to the next API call, the API returns next set of // results. If there are no further results then the continuation token does not contain a value. The value of // this parameter should not be URL encoded. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetServiceInfoList(ctx context.Context, applicationID string, serviceTypeName string, continuationToken string, timeout *int64) (result PagedServiceInfoList, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetServiceInfoList") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetServiceInfoList", err.Error()) } req, err := client.GetServiceInfoListPreparer(ctx, applicationID, serviceTypeName, continuationToken, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetServiceInfoList", nil, "Failure preparing request") return } resp, err := client.GetServiceInfoListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetServiceInfoList", resp, "Failure sending request") return } result, err = client.GetServiceInfoListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetServiceInfoList", resp, "Failure responding to request") return } return } // GetServiceInfoListPreparer prepares the GetServiceInfoList request. func (client BaseClient) GetServiceInfoListPreparer(ctx context.Context, applicationID string, serviceTypeName string, continuationToken string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationId": applicationID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if len(serviceTypeName) > 0 { queryParameters["ServiceTypeName"] = autorest.Encode("query", serviceTypeName) } if len(continuationToken) > 0 { queryParameters["ContinuationToken"] = continuationToken } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Applications/{applicationId}/$/GetServices", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetServiceInfoListSender sends the GetServiceInfoList request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetServiceInfoListSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetServiceInfoListResponder handles the response to the GetServiceInfoList request. The method always // closes the http.Response Body. func (client BaseClient) GetServiceInfoListResponder(resp *http.Response) (result PagedServiceInfoList, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetServiceManifest gets the manifest describing a service type. The response contains the service manifest XML as a // string. // Parameters: // applicationTypeName - the name of the application type. // applicationTypeVersion - the version of the application type. // serviceManifestName - the name of a service manifest registered as part of an application type in a Service // Fabric cluster. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetServiceManifest(ctx context.Context, applicationTypeName string, applicationTypeVersion string, serviceManifestName string, timeout *int64) (result ServiceTypeManifest, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetServiceManifest") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetServiceManifest", err.Error()) } req, err := client.GetServiceManifestPreparer(ctx, applicationTypeName, applicationTypeVersion, serviceManifestName, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetServiceManifest", nil, "Failure preparing request") return } resp, err := client.GetServiceManifestSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetServiceManifest", resp, "Failure sending request") return } result, err = client.GetServiceManifestResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetServiceManifest", resp, "Failure responding to request") return } return } // GetServiceManifestPreparer prepares the GetServiceManifest request. func (client BaseClient) GetServiceManifestPreparer(ctx context.Context, applicationTypeName string, applicationTypeVersion string, serviceManifestName string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationTypeName": autorest.Encode("path", applicationTypeName), } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, "ApplicationTypeVersion": autorest.Encode("query", applicationTypeVersion), "ServiceManifestName": autorest.Encode("query", serviceManifestName), } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/ApplicationTypes/{applicationTypeName}/$/GetServiceManifest", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetServiceManifestSender sends the GetServiceManifest request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetServiceManifestSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetServiceManifestResponder handles the response to the GetServiceManifest request. The method always // closes the http.Response Body. func (client BaseClient) GetServiceManifestResponder(resp *http.Response) (result ServiceTypeManifest, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetServiceNameInfo gets name of the service for the specified partition. A 404 error is returned if the partition ID // does not exist in the cluster. // Parameters: // partitionID - the identity of the partition. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetServiceNameInfo(ctx context.Context, partitionID uuid.UUID, timeout *int64) (result ServiceNameInfo, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetServiceNameInfo") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetServiceNameInfo", err.Error()) } req, err := client.GetServiceNameInfoPreparer(ctx, partitionID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetServiceNameInfo", nil, "Failure preparing request") return } resp, err := client.GetServiceNameInfoSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetServiceNameInfo", resp, "Failure sending request") return } result, err = client.GetServiceNameInfoResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetServiceNameInfo", resp, "Failure responding to request") return } return } // GetServiceNameInfoPreparer prepares the GetServiceNameInfo request. func (client BaseClient) GetServiceNameInfoPreparer(ctx context.Context, partitionID uuid.UUID, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "partitionId": partitionID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Partitions/{partitionId}/$/GetServiceName", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetServiceNameInfoSender sends the GetServiceNameInfo request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetServiceNameInfoSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetServiceNameInfoResponder handles the response to the GetServiceNameInfo request. The method always // closes the http.Response Body. func (client BaseClient) GetServiceNameInfoResponder(resp *http.Response) (result ServiceNameInfo, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetServicesEventList the response is list of ServiceEvent objects. // Parameters: // startTimeUtc - the start time of a lookup query in ISO UTC yyyy-MM-ddTHH:mm:ssZ. // endTimeUtc - the end time of a lookup query in ISO UTC yyyy-MM-ddTHH:mm:ssZ. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. // eventsTypesFilter - this is a comma separated string specifying the types of FabricEvents that should only // be included in the response. // excludeAnalysisEvents - this param disables the retrieval of AnalysisEvents if true is passed. // skipCorrelationLookup - this param disables the search of CorrelatedEvents information if true is passed. // otherwise the CorrelationEvents get processed and HasCorrelatedEvents field in every FabricEvent gets // populated. func (client BaseClient) GetServicesEventList(ctx context.Context, startTimeUtc string, endTimeUtc string, timeout *int64, eventsTypesFilter string, excludeAnalysisEvents *bool, skipCorrelationLookup *bool) (result ListServiceEvent, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetServicesEventList") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetServicesEventList", err.Error()) } req, err := client.GetServicesEventListPreparer(ctx, startTimeUtc, endTimeUtc, timeout, eventsTypesFilter, excludeAnalysisEvents, skipCorrelationLookup) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetServicesEventList", nil, "Failure preparing request") return } resp, err := client.GetServicesEventListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetServicesEventList", resp, "Failure sending request") return } result, err = client.GetServicesEventListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetServicesEventList", resp, "Failure responding to request") return } return } // GetServicesEventListPreparer prepares the GetServicesEventList request. func (client BaseClient) GetServicesEventListPreparer(ctx context.Context, startTimeUtc string, endTimeUtc string, timeout *int64, eventsTypesFilter string, excludeAnalysisEvents *bool, skipCorrelationLookup *bool) (*http.Request, error) { const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, "EndTimeUtc": autorest.Encode("query", endTimeUtc), "StartTimeUtc": autorest.Encode("query", startTimeUtc), } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } if len(eventsTypesFilter) > 0 { queryParameters["EventsTypesFilter"] = autorest.Encode("query", eventsTypesFilter) } if excludeAnalysisEvents != nil { queryParameters["ExcludeAnalysisEvents"] = autorest.Encode("query", *excludeAnalysisEvents) } if skipCorrelationLookup != nil { queryParameters["SkipCorrelationLookup"] = autorest.Encode("query", *skipCorrelationLookup) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/EventsStore/Services/Events"), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetServicesEventListSender sends the GetServicesEventList request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetServicesEventListSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetServicesEventListResponder handles the response to the GetServicesEventList request. The method always // closes the http.Response Body. func (client BaseClient) GetServicesEventListResponder(resp *http.Response) (result ListServiceEvent, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetServiceTypeInfoByName gets the information about a specific service type that is supported by a provisioned // application type in a Service Fabric cluster. The provided application type must exist. Otherwise, a 404 status is // returned. A 204 response is returned if the specified service type is not found in the cluster. // Parameters: // applicationTypeName - the name of the application type. // applicationTypeVersion - the version of the application type. // serviceTypeName - specifies the name of a Service Fabric service type. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetServiceTypeInfoByName(ctx context.Context, applicationTypeName string, applicationTypeVersion string, serviceTypeName string, timeout *int64) (result ServiceTypeInfo, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetServiceTypeInfoByName") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetServiceTypeInfoByName", err.Error()) } req, err := client.GetServiceTypeInfoByNamePreparer(ctx, applicationTypeName, applicationTypeVersion, serviceTypeName, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetServiceTypeInfoByName", nil, "Failure preparing request") return } resp, err := client.GetServiceTypeInfoByNameSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetServiceTypeInfoByName", resp, "Failure sending request") return } result, err = client.GetServiceTypeInfoByNameResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetServiceTypeInfoByName", resp, "Failure responding to request") return } return } // GetServiceTypeInfoByNamePreparer prepares the GetServiceTypeInfoByName request. func (client BaseClient) GetServiceTypeInfoByNamePreparer(ctx context.Context, applicationTypeName string, applicationTypeVersion string, serviceTypeName string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationTypeName": autorest.Encode("path", applicationTypeName), "serviceTypeName": serviceTypeName, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, "ApplicationTypeVersion": autorest.Encode("query", applicationTypeVersion), } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/ApplicationTypes/{applicationTypeName}/$/GetServiceTypes/{serviceTypeName}", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetServiceTypeInfoByNameSender sends the GetServiceTypeInfoByName request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetServiceTypeInfoByNameSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetServiceTypeInfoByNameResponder handles the response to the GetServiceTypeInfoByName request. The method always // closes the http.Response Body. func (client BaseClient) GetServiceTypeInfoByNameResponder(resp *http.Response) (result ServiceTypeInfo, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusNoContent), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetServiceTypeInfoList gets the list containing the information about service types that are supported by a // provisioned application type in a Service Fabric cluster. The provided application type must exist. Otherwise, a 404 // status is returned. // Parameters: // applicationTypeName - the name of the application type. // applicationTypeVersion - the version of the application type. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetServiceTypeInfoList(ctx context.Context, applicationTypeName string, applicationTypeVersion string, timeout *int64) (result ListServiceTypeInfo, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetServiceTypeInfoList") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetServiceTypeInfoList", err.Error()) } req, err := client.GetServiceTypeInfoListPreparer(ctx, applicationTypeName, applicationTypeVersion, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetServiceTypeInfoList", nil, "Failure preparing request") return } resp, err := client.GetServiceTypeInfoListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetServiceTypeInfoList", resp, "Failure sending request") return } result, err = client.GetServiceTypeInfoListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetServiceTypeInfoList", resp, "Failure responding to request") return } return } // GetServiceTypeInfoListPreparer prepares the GetServiceTypeInfoList request. func (client BaseClient) GetServiceTypeInfoListPreparer(ctx context.Context, applicationTypeName string, applicationTypeVersion string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationTypeName": autorest.Encode("path", applicationTypeName), } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, "ApplicationTypeVersion": autorest.Encode("query", applicationTypeVersion), } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/ApplicationTypes/{applicationTypeName}/$/GetServiceTypes", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetServiceTypeInfoListSender sends the GetServiceTypeInfoList request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetServiceTypeInfoListSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetServiceTypeInfoListResponder handles the response to the GetServiceTypeInfoList request. The method always // closes the http.Response Body. func (client BaseClient) GetServiceTypeInfoListResponder(resp *http.Response) (result ListServiceTypeInfo, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result.Value), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetSubNameInfoList enumerates all the Service Fabric names under a given name. If the subnames do not fit in a page, // one page of results is returned as well as a continuation token which can be used to get the next page. Querying a // name that doesn't exist will fail. // Parameters: // nameID - the Service Fabric name, without the 'fabric:' URI scheme. // recursive - allows specifying that the search performed should be recursive. // continuationToken - the continuation token parameter is used to obtain next set of results. A continuation // token with a non empty value is included in the response of the API when the results from the system do not // fit in a single response. When this value is passed to the next API call, the API returns next set of // results. If there are no further results then the continuation token does not contain a value. The value of // this parameter should not be URL encoded. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetSubNameInfoList(ctx context.Context, nameID string, recursive *bool, continuationToken string, timeout *int64) (result PagedSubNameInfoList, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetSubNameInfoList") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetSubNameInfoList", err.Error()) } req, err := client.GetSubNameInfoListPreparer(ctx, nameID, recursive, continuationToken, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetSubNameInfoList", nil, "Failure preparing request") return } resp, err := client.GetSubNameInfoListSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetSubNameInfoList", resp, "Failure sending request") return } result, err = client.GetSubNameInfoListResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetSubNameInfoList", resp, "Failure responding to request") return } return } // GetSubNameInfoListPreparer prepares the GetSubNameInfoList request. func (client BaseClient) GetSubNameInfoListPreparer(ctx context.Context, nameID string, recursive *bool, continuationToken string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "nameId": nameID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if recursive != nil { queryParameters["Recursive"] = autorest.Encode("query", *recursive) } else { queryParameters["Recursive"] = autorest.Encode("query", false) } if len(continuationToken) > 0 { queryParameters["ContinuationToken"] = continuationToken } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Names/{nameId}/$/GetSubNames", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetSubNameInfoListSender sends the GetSubNameInfoList request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetSubNameInfoListSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetSubNameInfoListResponder handles the response to the GetSubNameInfoList request. The method always // closes the http.Response Body. func (client BaseClient) GetSubNameInfoListResponder(resp *http.Response) (result PagedSubNameInfoList, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // GetUpgradeOrchestrationServiceState get the service state of Service Fabric Upgrade Orchestration Service. This API // is internally used for support purposes. // Parameters: // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) GetUpgradeOrchestrationServiceState(ctx context.Context, timeout *int64) (result UpgradeOrchestrationServiceState, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.GetUpgradeOrchestrationServiceState") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "GetUpgradeOrchestrationServiceState", err.Error()) } req, err := client.GetUpgradeOrchestrationServiceStatePreparer(ctx, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetUpgradeOrchestrationServiceState", nil, "Failure preparing request") return } resp, err := client.GetUpgradeOrchestrationServiceStateSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetUpgradeOrchestrationServiceState", resp, "Failure sending request") return } result, err = client.GetUpgradeOrchestrationServiceStateResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "GetUpgradeOrchestrationServiceState", resp, "Failure responding to request") return } return } // GetUpgradeOrchestrationServiceStatePreparer prepares the GetUpgradeOrchestrationServiceState request. func (client BaseClient) GetUpgradeOrchestrationServiceStatePreparer(ctx context.Context, timeout *int64) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/$/GetUpgradeOrchestrationServiceState"), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // GetUpgradeOrchestrationServiceStateSender sends the GetUpgradeOrchestrationServiceState request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) GetUpgradeOrchestrationServiceStateSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // GetUpgradeOrchestrationServiceStateResponder handles the response to the GetUpgradeOrchestrationServiceState request. The method always // closes the http.Response Body. func (client BaseClient) GetUpgradeOrchestrationServiceStateResponder(resp *http.Response) (result UpgradeOrchestrationServiceState, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // InvokeContainerAPI invoke container API on a container deployed on a Service Fabric node for the given code package. // Parameters: // nodeName - the name of the node. // applicationID - the identity of the application. This is typically the full name of the application without // the 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the application name is "fabric:/myapp/app1", the application identity would be "myapp~app1" // in 6.0+ and "myapp/app1" in previous versions. // serviceManifestName - the name of a service manifest registered as part of an application type in a Service // Fabric cluster. // codePackageName - the name of code package specified in service manifest registered as part of an // application type in a Service Fabric cluster. // codePackageInstanceID - ID that uniquely identifies a code package instance deployed on a service fabric // node. // containerAPIRequestBody - parameters for making container API call // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) InvokeContainerAPI(ctx context.Context, nodeName string, applicationID string, serviceManifestName string, codePackageName string, codePackageInstanceID string, containerAPIRequestBody ContainerAPIRequestBody, timeout *int64) (result ContainerAPIResponse, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.InvokeContainerAPI") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}, {TargetValue: containerAPIRequestBody, Constraints: []validation.Constraint{{Target: "containerAPIRequestBody.URIPath", Name: validation.Null, Rule: true, Chain: nil}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "InvokeContainerAPI", err.Error()) } req, err := client.InvokeContainerAPIPreparer(ctx, nodeName, applicationID, serviceManifestName, codePackageName, codePackageInstanceID, containerAPIRequestBody, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "InvokeContainerAPI", nil, "Failure preparing request") return } resp, err := client.InvokeContainerAPISender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "InvokeContainerAPI", resp, "Failure sending request") return } result, err = client.InvokeContainerAPIResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "InvokeContainerAPI", resp, "Failure responding to request") return } return } // InvokeContainerAPIPreparer prepares the InvokeContainerAPI request. func (client BaseClient) InvokeContainerAPIPreparer(ctx context.Context, nodeName string, applicationID string, serviceManifestName string, codePackageName string, codePackageInstanceID string, containerAPIRequestBody ContainerAPIRequestBody, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationId": applicationID, "nodeName": autorest.Encode("path", nodeName), } const APIVersion = "6.2" queryParameters := map[string]interface{}{ "api-version": APIVersion, "CodePackageInstanceId": autorest.Encode("query", codePackageInstanceID), "CodePackageName": autorest.Encode("query", codePackageName), "ServiceManifestName": autorest.Encode("query", serviceManifestName), } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Nodes/{nodeName}/$/GetApplications/{applicationId}/$/GetCodePackages/$/ContainerApi", pathParameters), autorest.WithJSON(containerAPIRequestBody), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // InvokeContainerAPISender sends the InvokeContainerAPI request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) InvokeContainerAPISender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // InvokeContainerAPIResponder handles the response to the InvokeContainerAPI request. The method always // closes the http.Response Body. func (client BaseClient) InvokeContainerAPIResponder(resp *http.Response) (result ContainerAPIResponse, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // InvokeInfrastructureCommand for clusters that have one or more instances of the Infrastructure Service configured, // this API provides a way to send infrastructure-specific commands to a particular // instance of the Infrastructure Service. // // Available commands and their corresponding response formats vary depending upon // the infrastructure on which the cluster is running. // // This API supports the Service Fabric platform; it is not meant to be used directly from your code. // Parameters: // command - the text of the command to be invoked. The content of the command is infrastructure-specific. // serviceID - the identity of the infrastructure service. This is the full name of the infrastructure service // without the 'fabric:' URI scheme. This parameter required only for the cluster that have more than one // instance of infrastructure service running. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) InvokeInfrastructureCommand(ctx context.Context, command string, serviceID string, timeout *int64) (result String, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.InvokeInfrastructureCommand") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "InvokeInfrastructureCommand", err.Error()) } req, err := client.InvokeInfrastructureCommandPreparer(ctx, command, serviceID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "InvokeInfrastructureCommand", nil, "Failure preparing request") return } resp, err := client.InvokeInfrastructureCommandSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "InvokeInfrastructureCommand", resp, "Failure sending request") return } result, err = client.InvokeInfrastructureCommandResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "InvokeInfrastructureCommand", resp, "Failure responding to request") return } return } // InvokeInfrastructureCommandPreparer prepares the InvokeInfrastructureCommand request. func (client BaseClient) InvokeInfrastructureCommandPreparer(ctx context.Context, command string, serviceID string, timeout *int64) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, "Command": autorest.Encode("query", command), } if len(serviceID) > 0 { queryParameters["ServiceId"] = autorest.Encode("query", serviceID) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/$/InvokeInfrastructureCommand"), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // InvokeInfrastructureCommandSender sends the InvokeInfrastructureCommand request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) InvokeInfrastructureCommandSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // InvokeInfrastructureCommandResponder handles the response to the InvokeInfrastructureCommand request. The method always // closes the http.Response Body. func (client BaseClient) InvokeInfrastructureCommandResponder(resp *http.Response) (result String, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result.Value), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // InvokeInfrastructureQuery for clusters that have one or more instances of the Infrastructure Service configured, // this API provides a way to send infrastructure-specific queries to a particular // instance of the Infrastructure Service. // // Available commands and their corresponding response formats vary depending upon // the infrastructure on which the cluster is running. // // This API supports the Service Fabric platform; it is not meant to be used directly from your code. // Parameters: // command - the text of the command to be invoked. The content of the command is infrastructure-specific. // serviceID - the identity of the infrastructure service. This is the full name of the infrastructure service // without the 'fabric:' URI scheme. This parameter required only for the cluster that have more than one // instance of infrastructure service running. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) InvokeInfrastructureQuery(ctx context.Context, command string, serviceID string, timeout *int64) (result String, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.InvokeInfrastructureQuery") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "InvokeInfrastructureQuery", err.Error()) } req, err := client.InvokeInfrastructureQueryPreparer(ctx, command, serviceID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "InvokeInfrastructureQuery", nil, "Failure preparing request") return } resp, err := client.InvokeInfrastructureQuerySender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "InvokeInfrastructureQuery", resp, "Failure sending request") return } result, err = client.InvokeInfrastructureQueryResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "InvokeInfrastructureQuery", resp, "Failure responding to request") return } return } // InvokeInfrastructureQueryPreparer prepares the InvokeInfrastructureQuery request. func (client BaseClient) InvokeInfrastructureQueryPreparer(ctx context.Context, command string, serviceID string, timeout *int64) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, "Command": autorest.Encode("query", command), } if len(serviceID) > 0 { queryParameters["ServiceId"] = autorest.Encode("query", serviceID) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/$/InvokeInfrastructureQuery"), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // InvokeInfrastructureQuerySender sends the InvokeInfrastructureQuery request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) InvokeInfrastructureQuerySender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // InvokeInfrastructureQueryResponder handles the response to the InvokeInfrastructureQuery request. The method always // closes the http.Response Body. func (client BaseClient) InvokeInfrastructureQueryResponder(resp *http.Response) (result String, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result.Value), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // PostChaosSchedule set the Chaos Schedule currently in use by Chaos. Chaos will automatically schedule runs based on // the Chaos Schedule. // The version in the provided input schedule must match the version of the Chaos Schedule on the server. // If the version provided does not match the version on the server, the Chaos Schedule is not updated. // If the version provided matches the version on the server, then the Chaos Schedule is updated and the version of the // Chaos Schedule on the server is incremented up by one and wraps back to 0 after 2,147,483,647. // If Chaos is running when this call is made, the call will fail. // Parameters: // chaosSchedule - describes the schedule used by Chaos. func (client BaseClient) PostChaosSchedule(ctx context.Context, chaosSchedule ChaosScheduleDescription) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.PostChaosSchedule") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: chaosSchedule, Constraints: []validation.Constraint{{Target: "chaosSchedule.Version", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "chaosSchedule.Version", Name: validation.InclusiveMinimum, Rule: int64(0), Chain: nil}}}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "PostChaosSchedule", err.Error()) } req, err := client.PostChaosSchedulePreparer(ctx, chaosSchedule) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "PostChaosSchedule", nil, "Failure preparing request") return } resp, err := client.PostChaosScheduleSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "PostChaosSchedule", resp, "Failure sending request") return } result, err = client.PostChaosScheduleResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "PostChaosSchedule", resp, "Failure responding to request") return } return } // PostChaosSchedulePreparer prepares the PostChaosSchedule request. func (client BaseClient) PostChaosSchedulePreparer(ctx context.Context, chaosSchedule ChaosScheduleDescription) (*http.Request, error) { const APIVersion = "6.2" queryParameters := map[string]interface{}{ "api-version": APIVersion, } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/Tools/Chaos/Schedule"), autorest.WithJSON(chaosSchedule), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // PostChaosScheduleSender sends the PostChaosSchedule request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) PostChaosScheduleSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // PostChaosScheduleResponder handles the response to the PostChaosSchedule request. The method always // closes the http.Response Body. func (client BaseClient) PostChaosScheduleResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // ProvisionApplicationType provisions a Service Fabric application type with the cluster. The provision is required // before any new applications can be instantiated. // The provision operation can be performed either on the application package specified by the // relativePathInImageStore, or by using the URI of the external '.sfpkg'. // Parameters: // provisionApplicationTypeDescriptionBaseRequiredBodyParam - the base type of provision application type // description which supports either image store-based provision or external store-based provision. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) ProvisionApplicationType(ctx context.Context, provisionApplicationTypeDescriptionBaseRequiredBodyParam BasicProvisionApplicationTypeDescriptionBase, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.ProvisionApplicationType") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: provisionApplicationTypeDescriptionBaseRequiredBodyParam, Constraints: []validation.Constraint{{Target: "provisionApplicationTypeDescriptionBaseRequiredBodyParam.Async", Name: validation.Null, Rule: true, Chain: nil}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "ProvisionApplicationType", err.Error()) } req, err := client.ProvisionApplicationTypePreparer(ctx, provisionApplicationTypeDescriptionBaseRequiredBodyParam, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ProvisionApplicationType", nil, "Failure preparing request") return } resp, err := client.ProvisionApplicationTypeSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ProvisionApplicationType", resp, "Failure sending request") return } result, err = client.ProvisionApplicationTypeResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ProvisionApplicationType", resp, "Failure responding to request") return } return } // ProvisionApplicationTypePreparer prepares the ProvisionApplicationType request. func (client BaseClient) ProvisionApplicationTypePreparer(ctx context.Context, provisionApplicationTypeDescriptionBaseRequiredBodyParam BasicProvisionApplicationTypeDescriptionBase, timeout *int64) (*http.Request, error) { const APIVersion = "6.2" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/ApplicationTypes/$/Provision"), autorest.WithJSON(provisionApplicationTypeDescriptionBaseRequiredBodyParam), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ProvisionApplicationTypeSender sends the ProvisionApplicationType request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) ProvisionApplicationTypeSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // ProvisionApplicationTypeResponder handles the response to the ProvisionApplicationType request. The method always // closes the http.Response Body. func (client BaseClient) ProvisionApplicationTypeResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), autorest.ByClosing()) result.Response = resp return } // ProvisionCluster validate and provision the code or configuration packages of a Service Fabric cluster. // Parameters: // provisionFabricDescription - describes the parameters for provisioning a cluster. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) ProvisionCluster(ctx context.Context, provisionFabricDescription ProvisionFabricDescription, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.ProvisionCluster") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "ProvisionCluster", err.Error()) } req, err := client.ProvisionClusterPreparer(ctx, provisionFabricDescription, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ProvisionCluster", nil, "Failure preparing request") return } resp, err := client.ProvisionClusterSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ProvisionCluster", resp, "Failure sending request") return } result, err = client.ProvisionClusterResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ProvisionCluster", resp, "Failure responding to request") return } return } // ProvisionClusterPreparer prepares the ProvisionCluster request. func (client BaseClient) ProvisionClusterPreparer(ctx context.Context, provisionFabricDescription ProvisionFabricDescription, timeout *int64) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/$/Provision"), autorest.WithJSON(provisionFabricDescription), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ProvisionClusterSender sends the ProvisionCluster request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) ProvisionClusterSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // ProvisionClusterResponder handles the response to the ProvisionCluster request. The method always // closes the http.Response Body. func (client BaseClient) ProvisionClusterResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // PutProperty creates or updates the specified Service Fabric property under a given name. // Parameters: // nameID - the Service Fabric name, without the 'fabric:' URI scheme. // propertyDescription - describes the Service Fabric property to be created. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) PutProperty(ctx context.Context, nameID string, propertyDescription PropertyDescription, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.PutProperty") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: propertyDescription, Constraints: []validation.Constraint{{Target: "propertyDescription.PropertyName", Name: validation.Null, Rule: true, Chain: nil}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "PutProperty", err.Error()) } req, err := client.PutPropertyPreparer(ctx, nameID, propertyDescription, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "PutProperty", nil, "Failure preparing request") return } resp, err := client.PutPropertySender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "PutProperty", resp, "Failure sending request") return } result, err = client.PutPropertyResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "PutProperty", resp, "Failure responding to request") return } return } // PutPropertyPreparer prepares the PutProperty request. func (client BaseClient) PutPropertyPreparer(ctx context.Context, nameID string, propertyDescription PropertyDescription, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "nameId": nameID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPut(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Names/{nameId}/$/GetProperty", pathParameters), autorest.WithJSON(propertyDescription), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // PutPropertySender sends the PutProperty request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) PutPropertySender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // PutPropertyResponder handles the response to the PutProperty request. The method always // closes the http.Response Body. func (client BaseClient) PutPropertyResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // RecoverAllPartitions indicates to the Service Fabric cluster that it should attempt to recover any services // (including system services) which are currently stuck in quorum loss. This operation should only be performed if it // is known that the replicas that are down cannot be recovered. Incorrect use of this API can cause potential data // loss. // Parameters: // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) RecoverAllPartitions(ctx context.Context, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.RecoverAllPartitions") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "RecoverAllPartitions", err.Error()) } req, err := client.RecoverAllPartitionsPreparer(ctx, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "RecoverAllPartitions", nil, "Failure preparing request") return } resp, err := client.RecoverAllPartitionsSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "RecoverAllPartitions", resp, "Failure sending request") return } result, err = client.RecoverAllPartitionsResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "RecoverAllPartitions", resp, "Failure responding to request") return } return } // RecoverAllPartitionsPreparer prepares the RecoverAllPartitions request. func (client BaseClient) RecoverAllPartitionsPreparer(ctx context.Context, timeout *int64) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/$/RecoverAllPartitions"), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // RecoverAllPartitionsSender sends the RecoverAllPartitions request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) RecoverAllPartitionsSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // RecoverAllPartitionsResponder handles the response to the RecoverAllPartitions request. The method always // closes the http.Response Body. func (client BaseClient) RecoverAllPartitionsResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // RecoverPartition indicates to the Service Fabric cluster that it should attempt to recover a specific partition // which is currently stuck in quorum loss. This operation should only be performed if it is known that the replicas // that are down cannot be recovered. Incorrect use of this API can cause potential data loss. // Parameters: // partitionID - the identity of the partition. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) RecoverPartition(ctx context.Context, partitionID uuid.UUID, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.RecoverPartition") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "RecoverPartition", err.Error()) } req, err := client.RecoverPartitionPreparer(ctx, partitionID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "RecoverPartition", nil, "Failure preparing request") return } resp, err := client.RecoverPartitionSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "RecoverPartition", resp, "Failure sending request") return } result, err = client.RecoverPartitionResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "RecoverPartition", resp, "Failure responding to request") return } return } // RecoverPartitionPreparer prepares the RecoverPartition request. func (client BaseClient) RecoverPartitionPreparer(ctx context.Context, partitionID uuid.UUID, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "partitionId": partitionID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Partitions/{partitionId}/$/Recover", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // RecoverPartitionSender sends the RecoverPartition request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) RecoverPartitionSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // RecoverPartitionResponder handles the response to the RecoverPartition request. The method always // closes the http.Response Body. func (client BaseClient) RecoverPartitionResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // RecoverServicePartitions indicates to the Service Fabric cluster that it should attempt to recover the specified // service which is currently stuck in quorum loss. This operation should only be performed if it is known that the // replicas that are down cannot be recovered. Incorrect use of this API can cause potential data loss. // Parameters: // serviceID - the identity of the service. This is typically the full name of the service without the // 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the service name is "fabric:/myapp/app1/svc1", the service identity would be // "myapp~app1~svc1" in 6.0+ and "myapp/app1/svc1" in previous versions. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) RecoverServicePartitions(ctx context.Context, serviceID string, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.RecoverServicePartitions") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "RecoverServicePartitions", err.Error()) } req, err := client.RecoverServicePartitionsPreparer(ctx, serviceID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "RecoverServicePartitions", nil, "Failure preparing request") return } resp, err := client.RecoverServicePartitionsSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "RecoverServicePartitions", resp, "Failure sending request") return } result, err = client.RecoverServicePartitionsResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "RecoverServicePartitions", resp, "Failure responding to request") return } return } // RecoverServicePartitionsPreparer prepares the RecoverServicePartitions request. func (client BaseClient) RecoverServicePartitionsPreparer(ctx context.Context, serviceID string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "serviceId": serviceID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Services/$/{serviceId}/$/GetPartitions/$/Recover", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // RecoverServicePartitionsSender sends the RecoverServicePartitions request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) RecoverServicePartitionsSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // RecoverServicePartitionsResponder handles the response to the RecoverServicePartitions request. The method always // closes the http.Response Body. func (client BaseClient) RecoverServicePartitionsResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // RecoverSystemPartitions indicates to the Service Fabric cluster that it should attempt to recover the system // services which are currently stuck in quorum loss. This operation should only be performed if it is known that the // replicas that are down cannot be recovered. Incorrect use of this API can cause potential data loss. // Parameters: // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) RecoverSystemPartitions(ctx context.Context, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.RecoverSystemPartitions") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "RecoverSystemPartitions", err.Error()) } req, err := client.RecoverSystemPartitionsPreparer(ctx, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "RecoverSystemPartitions", nil, "Failure preparing request") return } resp, err := client.RecoverSystemPartitionsSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "RecoverSystemPartitions", resp, "Failure sending request") return } result, err = client.RecoverSystemPartitionsResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "RecoverSystemPartitions", resp, "Failure responding to request") return } return } // RecoverSystemPartitionsPreparer prepares the RecoverSystemPartitions request. func (client BaseClient) RecoverSystemPartitionsPreparer(ctx context.Context, timeout *int64) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/$/RecoverSystemPartitions"), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // RecoverSystemPartitionsSender sends the RecoverSystemPartitions request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) RecoverSystemPartitionsSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // RecoverSystemPartitionsResponder handles the response to the RecoverSystemPartitions request. The method always // closes the http.Response Body. func (client BaseClient) RecoverSystemPartitionsResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // RemoveComposeDeployment deletes an existing Service Fabric compose deployment. // Parameters: // deploymentName - the identity of the deployment. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) RemoveComposeDeployment(ctx context.Context, deploymentName string, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.RemoveComposeDeployment") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "RemoveComposeDeployment", err.Error()) } req, err := client.RemoveComposeDeploymentPreparer(ctx, deploymentName, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "RemoveComposeDeployment", nil, "Failure preparing request") return } resp, err := client.RemoveComposeDeploymentSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "RemoveComposeDeployment", resp, "Failure sending request") return } result, err = client.RemoveComposeDeploymentResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "RemoveComposeDeployment", resp, "Failure responding to request") return } return } // RemoveComposeDeploymentPreparer prepares the RemoveComposeDeployment request. func (client BaseClient) RemoveComposeDeploymentPreparer(ctx context.Context, deploymentName string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "deploymentName": deploymentName, } const APIVersion = "6.0-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/ComposeDeployments/{deploymentName}/$/Delete", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // RemoveComposeDeploymentSender sends the RemoveComposeDeployment request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) RemoveComposeDeploymentSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // RemoveComposeDeploymentResponder handles the response to the RemoveComposeDeployment request. The method always // closes the http.Response Body. func (client BaseClient) RemoveComposeDeploymentResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), autorest.ByClosing()) result.Response = resp return } // RemoveNodeState notifies Service Fabric that the persisted state on a node has been permanently removed or lost. // This implies that it is not possible to recover the persisted state of that node. This generally happens if a hard // disk has been wiped clean, or if a hard disk crashes. The node has to be down for this operation to be successful. // This operation lets Service Fabric know that the replicas on that node no longer exist, and that Service Fabric // should stop waiting for those replicas to come back up. Do not run this cmdlet if the state on the node has not been // removed and the node can comes back up with its state intact. // Parameters: // nodeName - the name of the node. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) RemoveNodeState(ctx context.Context, nodeName string, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.RemoveNodeState") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "RemoveNodeState", err.Error()) } req, err := client.RemoveNodeStatePreparer(ctx, nodeName, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "RemoveNodeState", nil, "Failure preparing request") return } resp, err := client.RemoveNodeStateSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "RemoveNodeState", resp, "Failure sending request") return } result, err = client.RemoveNodeStateResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "RemoveNodeState", resp, "Failure responding to request") return } return } // RemoveNodeStatePreparer prepares the RemoveNodeState request. func (client BaseClient) RemoveNodeStatePreparer(ctx context.Context, nodeName string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "nodeName": autorest.Encode("path", nodeName), } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Nodes/{nodeName}/$/RemoveNodeState", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // RemoveNodeStateSender sends the RemoveNodeState request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) RemoveNodeStateSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // RemoveNodeStateResponder handles the response to the RemoveNodeState request. The method always // closes the http.Response Body. func (client BaseClient) RemoveNodeStateResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // RemoveReplica this API simulates a Service Fabric replica failure by removing a replica from a Service Fabric // cluster. The removal closes the replica, transitions the replica to the role None, and then removes all of the state // information of the replica from the cluster. This API tests the replica state removal path, and simulates the report // fault permanent path through client APIs. Warning - There are no safety checks performed when this API is used. // Incorrect use of this API can lead to data loss for stateful services.In addition, the forceRemove flag impacts all // other replicas hosted in the same process. // Parameters: // nodeName - the name of the node. // partitionID - the identity of the partition. // replicaID - the identifier of the replica. // forceRemove - remove a Service Fabric application or service forcefully without going through the graceful // shutdown sequence. This parameter can be used to forcefully delete an application or service for which // delete is timing out due to issues in the service code that prevents graceful close of replicas. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) RemoveReplica(ctx context.Context, nodeName string, partitionID uuid.UUID, replicaID string, forceRemove *bool, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.RemoveReplica") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "RemoveReplica", err.Error()) } req, err := client.RemoveReplicaPreparer(ctx, nodeName, partitionID, replicaID, forceRemove, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "RemoveReplica", nil, "Failure preparing request") return } resp, err := client.RemoveReplicaSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "RemoveReplica", resp, "Failure sending request") return } result, err = client.RemoveReplicaResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "RemoveReplica", resp, "Failure responding to request") return } return } // RemoveReplicaPreparer prepares the RemoveReplica request. func (client BaseClient) RemoveReplicaPreparer(ctx context.Context, nodeName string, partitionID uuid.UUID, replicaID string, forceRemove *bool, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "nodeName": autorest.Encode("path", nodeName), "partitionId": partitionID, "replicaId": replicaID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if forceRemove != nil { queryParameters["ForceRemove"] = autorest.Encode("query", *forceRemove) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Nodes/{nodeName}/$/GetPartitions/{partitionId}/$/GetReplicas/{replicaId}/$/Delete", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // RemoveReplicaSender sends the RemoveReplica request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) RemoveReplicaSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // RemoveReplicaResponder handles the response to the RemoveReplica request. The method always // closes the http.Response Body. func (client BaseClient) RemoveReplicaResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // ReportApplicationHealth reports health state of the specified Service Fabric application. The report must contain // the information about the source of the health report and property on which it is reported. // The report is sent to a Service Fabric gateway Application, which forwards to the health store. // The report may be accepted by the gateway, but rejected by the health store after extra validation. // For example, the health store may reject the report because of an invalid parameter, like a stale sequence number. // To see whether the report was applied in the health store, get application health and check that the report appears // in the HealthEvents section. // Parameters: // applicationID - the identity of the application. This is typically the full name of the application without // the 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the application name is "fabric:/myapp/app1", the application identity would be "myapp~app1" // in 6.0+ and "myapp/app1" in previous versions. // healthInformation - describes the health information for the health report. This information needs to be // present in all of the health reports sent to the health manager. // immediate - a flag which indicates whether the report should be sent immediately. // A health report is sent to a Service Fabric gateway Application, which forwards to the health store. // If Immediate is set to true, the report is sent immediately from HTTP Gateway to the health store, // regardless of the fabric client settings that the HTTP Gateway Application is using. // This is useful for critical reports that should be sent as soon as possible. // Depending on timing and other conditions, sending the report may still fail, for example if the HTTP Gateway // is closed or the message doesn't reach the Gateway. // If Immediate is set to false, the report is sent based on the health client settings from the HTTP Gateway. // Therefore, it will be batched according to the HealthReportSendInterval configuration. // This is the recommended setting because it allows the health client to optimize health reporting messages to // health store as well as health report processing. // By default, reports are not sent immediately. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) ReportApplicationHealth(ctx context.Context, applicationID string, healthInformation HealthInformation, immediate *bool, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.ReportApplicationHealth") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: healthInformation, Constraints: []validation.Constraint{{Target: "healthInformation.SourceID", Name: validation.Null, Rule: true, Chain: nil}, {Target: "healthInformation.Property", Name: validation.Null, Rule: true, Chain: nil}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "ReportApplicationHealth", err.Error()) } req, err := client.ReportApplicationHealthPreparer(ctx, applicationID, healthInformation, immediate, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ReportApplicationHealth", nil, "Failure preparing request") return } resp, err := client.ReportApplicationHealthSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ReportApplicationHealth", resp, "Failure sending request") return } result, err = client.ReportApplicationHealthResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ReportApplicationHealth", resp, "Failure responding to request") return } return } // ReportApplicationHealthPreparer prepares the ReportApplicationHealth request. func (client BaseClient) ReportApplicationHealthPreparer(ctx context.Context, applicationID string, healthInformation HealthInformation, immediate *bool, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationId": applicationID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if immediate != nil { queryParameters["Immediate"] = autorest.Encode("query", *immediate) } else { queryParameters["Immediate"] = autorest.Encode("query", false) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Applications/{applicationId}/$/ReportHealth", pathParameters), autorest.WithJSON(healthInformation), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ReportApplicationHealthSender sends the ReportApplicationHealth request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) ReportApplicationHealthSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // ReportApplicationHealthResponder handles the response to the ReportApplicationHealth request. The method always // closes the http.Response Body. func (client BaseClient) ReportApplicationHealthResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // ReportClusterHealth sends a health report on a Service Fabric cluster. The report must contain the information about // the source of the health report and property on which it is reported. // The report is sent to a Service Fabric gateway node, which forwards to the health store. // The report may be accepted by the gateway, but rejected by the health store after extra validation. // For example, the health store may reject the report because of an invalid parameter, like a stale sequence number. // To see whether the report was applied in the health store, run GetClusterHealth and check that the report appears in // the HealthEvents section. // Parameters: // healthInformation - describes the health information for the health report. This information needs to be // present in all of the health reports sent to the health manager. // immediate - a flag which indicates whether the report should be sent immediately. // A health report is sent to a Service Fabric gateway Application, which forwards to the health store. // If Immediate is set to true, the report is sent immediately from HTTP Gateway to the health store, // regardless of the fabric client settings that the HTTP Gateway Application is using. // This is useful for critical reports that should be sent as soon as possible. // Depending on timing and other conditions, sending the report may still fail, for example if the HTTP Gateway // is closed or the message doesn't reach the Gateway. // If Immediate is set to false, the report is sent based on the health client settings from the HTTP Gateway. // Therefore, it will be batched according to the HealthReportSendInterval configuration. // This is the recommended setting because it allows the health client to optimize health reporting messages to // health store as well as health report processing. // By default, reports are not sent immediately. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) ReportClusterHealth(ctx context.Context, healthInformation HealthInformation, immediate *bool, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.ReportClusterHealth") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: healthInformation, Constraints: []validation.Constraint{{Target: "healthInformation.SourceID", Name: validation.Null, Rule: true, Chain: nil}, {Target: "healthInformation.Property", Name: validation.Null, Rule: true, Chain: nil}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "ReportClusterHealth", err.Error()) } req, err := client.ReportClusterHealthPreparer(ctx, healthInformation, immediate, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ReportClusterHealth", nil, "Failure preparing request") return } resp, err := client.ReportClusterHealthSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ReportClusterHealth", resp, "Failure sending request") return } result, err = client.ReportClusterHealthResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ReportClusterHealth", resp, "Failure responding to request") return } return } // ReportClusterHealthPreparer prepares the ReportClusterHealth request. func (client BaseClient) ReportClusterHealthPreparer(ctx context.Context, healthInformation HealthInformation, immediate *bool, timeout *int64) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if immediate != nil { queryParameters["Immediate"] = autorest.Encode("query", *immediate) } else { queryParameters["Immediate"] = autorest.Encode("query", false) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/$/ReportClusterHealth"), autorest.WithJSON(healthInformation), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ReportClusterHealthSender sends the ReportClusterHealth request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) ReportClusterHealthSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // ReportClusterHealthResponder handles the response to the ReportClusterHealth request. The method always // closes the http.Response Body. func (client BaseClient) ReportClusterHealthResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // ReportDeployedApplicationHealth reports health state of the application deployed on a Service Fabric node. The // report must contain the information about the source of the health report and property on which it is reported. // The report is sent to a Service Fabric gateway Service, which forwards to the health store. // The report may be accepted by the gateway, but rejected by the health store after extra validation. // For example, the health store may reject the report because of an invalid parameter, like a stale sequence number. // To see whether the report was applied in the health store, get deployed application health and check that the report // appears in the HealthEvents section. // Parameters: // nodeName - the name of the node. // applicationID - the identity of the application. This is typically the full name of the application without // the 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the application name is "fabric:/myapp/app1", the application identity would be "myapp~app1" // in 6.0+ and "myapp/app1" in previous versions. // healthInformation - describes the health information for the health report. This information needs to be // present in all of the health reports sent to the health manager. // immediate - a flag which indicates whether the report should be sent immediately. // A health report is sent to a Service Fabric gateway Application, which forwards to the health store. // If Immediate is set to true, the report is sent immediately from HTTP Gateway to the health store, // regardless of the fabric client settings that the HTTP Gateway Application is using. // This is useful for critical reports that should be sent as soon as possible. // Depending on timing and other conditions, sending the report may still fail, for example if the HTTP Gateway // is closed or the message doesn't reach the Gateway. // If Immediate is set to false, the report is sent based on the health client settings from the HTTP Gateway. // Therefore, it will be batched according to the HealthReportSendInterval configuration. // This is the recommended setting because it allows the health client to optimize health reporting messages to // health store as well as health report processing. // By default, reports are not sent immediately. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) ReportDeployedApplicationHealth(ctx context.Context, nodeName string, applicationID string, healthInformation HealthInformation, immediate *bool, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.ReportDeployedApplicationHealth") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: healthInformation, Constraints: []validation.Constraint{{Target: "healthInformation.SourceID", Name: validation.Null, Rule: true, Chain: nil}, {Target: "healthInformation.Property", Name: validation.Null, Rule: true, Chain: nil}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "ReportDeployedApplicationHealth", err.Error()) } req, err := client.ReportDeployedApplicationHealthPreparer(ctx, nodeName, applicationID, healthInformation, immediate, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ReportDeployedApplicationHealth", nil, "Failure preparing request") return } resp, err := client.ReportDeployedApplicationHealthSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ReportDeployedApplicationHealth", resp, "Failure sending request") return } result, err = client.ReportDeployedApplicationHealthResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ReportDeployedApplicationHealth", resp, "Failure responding to request") return } return } // ReportDeployedApplicationHealthPreparer prepares the ReportDeployedApplicationHealth request. func (client BaseClient) ReportDeployedApplicationHealthPreparer(ctx context.Context, nodeName string, applicationID string, healthInformation HealthInformation, immediate *bool, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationId": applicationID, "nodeName": autorest.Encode("path", nodeName), } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if immediate != nil { queryParameters["Immediate"] = autorest.Encode("query", *immediate) } else { queryParameters["Immediate"] = autorest.Encode("query", false) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Nodes/{nodeName}/$/GetApplications/{applicationId}/$/ReportHealth", pathParameters), autorest.WithJSON(healthInformation), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ReportDeployedApplicationHealthSender sends the ReportDeployedApplicationHealth request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) ReportDeployedApplicationHealthSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // ReportDeployedApplicationHealthResponder handles the response to the ReportDeployedApplicationHealth request. The method always // closes the http.Response Body. func (client BaseClient) ReportDeployedApplicationHealthResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // ReportDeployedServicePackageHealth reports health state of the service package of the application deployed on a // Service Fabric node. The report must contain the information about the source of the health report and property on // which it is reported. // The report is sent to a Service Fabric gateway Service, which forwards to the health store. // The report may be accepted by the gateway, but rejected by the health store after extra validation. // For example, the health store may reject the report because of an invalid parameter, like a stale sequence number. // To see whether the report was applied in the health store, get deployed service package health and check that the // report appears in the HealthEvents section. // Parameters: // nodeName - the name of the node. // applicationID - the identity of the application. This is typically the full name of the application without // the 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the application name is "fabric:/myapp/app1", the application identity would be "myapp~app1" // in 6.0+ and "myapp/app1" in previous versions. // servicePackageName - the name of the service package. // healthInformation - describes the health information for the health report. This information needs to be // present in all of the health reports sent to the health manager. // immediate - a flag which indicates whether the report should be sent immediately. // A health report is sent to a Service Fabric gateway Application, which forwards to the health store. // If Immediate is set to true, the report is sent immediately from HTTP Gateway to the health store, // regardless of the fabric client settings that the HTTP Gateway Application is using. // This is useful for critical reports that should be sent as soon as possible. // Depending on timing and other conditions, sending the report may still fail, for example if the HTTP Gateway // is closed or the message doesn't reach the Gateway. // If Immediate is set to false, the report is sent based on the health client settings from the HTTP Gateway. // Therefore, it will be batched according to the HealthReportSendInterval configuration. // This is the recommended setting because it allows the health client to optimize health reporting messages to // health store as well as health report processing. // By default, reports are not sent immediately. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) ReportDeployedServicePackageHealth(ctx context.Context, nodeName string, applicationID string, servicePackageName string, healthInformation HealthInformation, immediate *bool, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.ReportDeployedServicePackageHealth") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: healthInformation, Constraints: []validation.Constraint{{Target: "healthInformation.SourceID", Name: validation.Null, Rule: true, Chain: nil}, {Target: "healthInformation.Property", Name: validation.Null, Rule: true, Chain: nil}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "ReportDeployedServicePackageHealth", err.Error()) } req, err := client.ReportDeployedServicePackageHealthPreparer(ctx, nodeName, applicationID, servicePackageName, healthInformation, immediate, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ReportDeployedServicePackageHealth", nil, "Failure preparing request") return } resp, err := client.ReportDeployedServicePackageHealthSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ReportDeployedServicePackageHealth", resp, "Failure sending request") return } result, err = client.ReportDeployedServicePackageHealthResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ReportDeployedServicePackageHealth", resp, "Failure responding to request") return } return } // ReportDeployedServicePackageHealthPreparer prepares the ReportDeployedServicePackageHealth request. func (client BaseClient) ReportDeployedServicePackageHealthPreparer(ctx context.Context, nodeName string, applicationID string, servicePackageName string, healthInformation HealthInformation, immediate *bool, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationId": applicationID, "nodeName": autorest.Encode("path", nodeName), "servicePackageName": servicePackageName, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if immediate != nil { queryParameters["Immediate"] = autorest.Encode("query", *immediate) } else { queryParameters["Immediate"] = autorest.Encode("query", false) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Nodes/{nodeName}/$/GetApplications/{applicationId}/$/GetServicePackages/{servicePackageName}/$/ReportHealth", pathParameters), autorest.WithJSON(healthInformation), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ReportDeployedServicePackageHealthSender sends the ReportDeployedServicePackageHealth request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) ReportDeployedServicePackageHealthSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // ReportDeployedServicePackageHealthResponder handles the response to the ReportDeployedServicePackageHealth request. The method always // closes the http.Response Body. func (client BaseClient) ReportDeployedServicePackageHealthResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // ReportNodeHealth reports health state of the specified Service Fabric node. The report must contain the information // about the source of the health report and property on which it is reported. // The report is sent to a Service Fabric gateway node, which forwards to the health store. // The report may be accepted by the gateway, but rejected by the health store after extra validation. // For example, the health store may reject the report because of an invalid parameter, like a stale sequence number. // To see whether the report was applied in the health store, run GetNodeHealth and check that the report appears in // the HealthEvents section. // Parameters: // nodeName - the name of the node. // healthInformation - describes the health information for the health report. This information needs to be // present in all of the health reports sent to the health manager. // immediate - a flag which indicates whether the report should be sent immediately. // A health report is sent to a Service Fabric gateway Application, which forwards to the health store. // If Immediate is set to true, the report is sent immediately from HTTP Gateway to the health store, // regardless of the fabric client settings that the HTTP Gateway Application is using. // This is useful for critical reports that should be sent as soon as possible. // Depending on timing and other conditions, sending the report may still fail, for example if the HTTP Gateway // is closed or the message doesn't reach the Gateway. // If Immediate is set to false, the report is sent based on the health client settings from the HTTP Gateway. // Therefore, it will be batched according to the HealthReportSendInterval configuration. // This is the recommended setting because it allows the health client to optimize health reporting messages to // health store as well as health report processing. // By default, reports are not sent immediately. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) ReportNodeHealth(ctx context.Context, nodeName string, healthInformation HealthInformation, immediate *bool, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.ReportNodeHealth") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: healthInformation, Constraints: []validation.Constraint{{Target: "healthInformation.SourceID", Name: validation.Null, Rule: true, Chain: nil}, {Target: "healthInformation.Property", Name: validation.Null, Rule: true, Chain: nil}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "ReportNodeHealth", err.Error()) } req, err := client.ReportNodeHealthPreparer(ctx, nodeName, healthInformation, immediate, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ReportNodeHealth", nil, "Failure preparing request") return } resp, err := client.ReportNodeHealthSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ReportNodeHealth", resp, "Failure sending request") return } result, err = client.ReportNodeHealthResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ReportNodeHealth", resp, "Failure responding to request") return } return } // ReportNodeHealthPreparer prepares the ReportNodeHealth request. func (client BaseClient) ReportNodeHealthPreparer(ctx context.Context, nodeName string, healthInformation HealthInformation, immediate *bool, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "nodeName": autorest.Encode("path", nodeName), } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if immediate != nil { queryParameters["Immediate"] = autorest.Encode("query", *immediate) } else { queryParameters["Immediate"] = autorest.Encode("query", false) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Nodes/{nodeName}/$/ReportHealth", pathParameters), autorest.WithJSON(healthInformation), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ReportNodeHealthSender sends the ReportNodeHealth request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) ReportNodeHealthSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // ReportNodeHealthResponder handles the response to the ReportNodeHealth request. The method always // closes the http.Response Body. func (client BaseClient) ReportNodeHealthResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // ReportPartitionHealth reports health state of the specified Service Fabric partition. The report must contain the // information about the source of the health report and property on which it is reported. // The report is sent to a Service Fabric gateway Partition, which forwards to the health store. // The report may be accepted by the gateway, but rejected by the health store after extra validation. // For example, the health store may reject the report because of an invalid parameter, like a stale sequence number. // To see whether the report was applied in the health store, run GetPartitionHealth and check that the report appears // in the HealthEvents section. // Parameters: // partitionID - the identity of the partition. // healthInformation - describes the health information for the health report. This information needs to be // present in all of the health reports sent to the health manager. // immediate - a flag which indicates whether the report should be sent immediately. // A health report is sent to a Service Fabric gateway Application, which forwards to the health store. // If Immediate is set to true, the report is sent immediately from HTTP Gateway to the health store, // regardless of the fabric client settings that the HTTP Gateway Application is using. // This is useful for critical reports that should be sent as soon as possible. // Depending on timing and other conditions, sending the report may still fail, for example if the HTTP Gateway // is closed or the message doesn't reach the Gateway. // If Immediate is set to false, the report is sent based on the health client settings from the HTTP Gateway. // Therefore, it will be batched according to the HealthReportSendInterval configuration. // This is the recommended setting because it allows the health client to optimize health reporting messages to // health store as well as health report processing. // By default, reports are not sent immediately. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) ReportPartitionHealth(ctx context.Context, partitionID uuid.UUID, healthInformation HealthInformation, immediate *bool, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.ReportPartitionHealth") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: healthInformation, Constraints: []validation.Constraint{{Target: "healthInformation.SourceID", Name: validation.Null, Rule: true, Chain: nil}, {Target: "healthInformation.Property", Name: validation.Null, Rule: true, Chain: nil}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "ReportPartitionHealth", err.Error()) } req, err := client.ReportPartitionHealthPreparer(ctx, partitionID, healthInformation, immediate, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ReportPartitionHealth", nil, "Failure preparing request") return } resp, err := client.ReportPartitionHealthSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ReportPartitionHealth", resp, "Failure sending request") return } result, err = client.ReportPartitionHealthResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ReportPartitionHealth", resp, "Failure responding to request") return } return } // ReportPartitionHealthPreparer prepares the ReportPartitionHealth request. func (client BaseClient) ReportPartitionHealthPreparer(ctx context.Context, partitionID uuid.UUID, healthInformation HealthInformation, immediate *bool, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "partitionId": partitionID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if immediate != nil { queryParameters["Immediate"] = autorest.Encode("query", *immediate) } else { queryParameters["Immediate"] = autorest.Encode("query", false) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Partitions/{partitionId}/$/ReportHealth", pathParameters), autorest.WithJSON(healthInformation), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ReportPartitionHealthSender sends the ReportPartitionHealth request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) ReportPartitionHealthSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // ReportPartitionHealthResponder handles the response to the ReportPartitionHealth request. The method always // closes the http.Response Body. func (client BaseClient) ReportPartitionHealthResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // ReportReplicaHealth reports health state of the specified Service Fabric replica. The report must contain the // information about the source of the health report and property on which it is reported. // The report is sent to a Service Fabric gateway Replica, which forwards to the health store. // The report may be accepted by the gateway, but rejected by the health store after extra validation. // For example, the health store may reject the report because of an invalid parameter, like a stale sequence number. // To see whether the report was applied in the health store, run GetReplicaHealth and check that the report appears in // the HealthEvents section. // Parameters: // partitionID - the identity of the partition. // replicaID - the identifier of the replica. // replicaHealthReportServiceKind - the kind of service replica (Stateless or Stateful) for which the health is // being reported. Following are the possible values. // healthInformation - describes the health information for the health report. This information needs to be // present in all of the health reports sent to the health manager. // immediate - a flag which indicates whether the report should be sent immediately. // A health report is sent to a Service Fabric gateway Application, which forwards to the health store. // If Immediate is set to true, the report is sent immediately from HTTP Gateway to the health store, // regardless of the fabric client settings that the HTTP Gateway Application is using. // This is useful for critical reports that should be sent as soon as possible. // Depending on timing and other conditions, sending the report may still fail, for example if the HTTP Gateway // is closed or the message doesn't reach the Gateway. // If Immediate is set to false, the report is sent based on the health client settings from the HTTP Gateway. // Therefore, it will be batched according to the HealthReportSendInterval configuration. // This is the recommended setting because it allows the health client to optimize health reporting messages to // health store as well as health report processing. // By default, reports are not sent immediately. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) ReportReplicaHealth(ctx context.Context, partitionID uuid.UUID, replicaID string, replicaHealthReportServiceKind ReplicaHealthReportServiceKind, healthInformation HealthInformation, immediate *bool, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.ReportReplicaHealth") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: healthInformation, Constraints: []validation.Constraint{{Target: "healthInformation.SourceID", Name: validation.Null, Rule: true, Chain: nil}, {Target: "healthInformation.Property", Name: validation.Null, Rule: true, Chain: nil}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "ReportReplicaHealth", err.Error()) } req, err := client.ReportReplicaHealthPreparer(ctx, partitionID, replicaID, replicaHealthReportServiceKind, healthInformation, immediate, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ReportReplicaHealth", nil, "Failure preparing request") return } resp, err := client.ReportReplicaHealthSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ReportReplicaHealth", resp, "Failure sending request") return } result, err = client.ReportReplicaHealthResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ReportReplicaHealth", resp, "Failure responding to request") return } return } // ReportReplicaHealthPreparer prepares the ReportReplicaHealth request. func (client BaseClient) ReportReplicaHealthPreparer(ctx context.Context, partitionID uuid.UUID, replicaID string, replicaHealthReportServiceKind ReplicaHealthReportServiceKind, healthInformation HealthInformation, immediate *bool, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "partitionId": partitionID, "replicaId": replicaID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, "ReplicaHealthReportServiceKind": autorest.Encode("query", replicaHealthReportServiceKind), } if immediate != nil { queryParameters["Immediate"] = autorest.Encode("query", *immediate) } else { queryParameters["Immediate"] = autorest.Encode("query", false) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Partitions/{partitionId}/$/GetReplicas/{replicaId}/$/ReportHealth", pathParameters), autorest.WithJSON(healthInformation), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ReportReplicaHealthSender sends the ReportReplicaHealth request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) ReportReplicaHealthSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // ReportReplicaHealthResponder handles the response to the ReportReplicaHealth request. The method always // closes the http.Response Body. func (client BaseClient) ReportReplicaHealthResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // ReportServiceHealth reports health state of the specified Service Fabric service. The report must contain the // information about the source of the health report and property on which it is reported. // The report is sent to a Service Fabric gateway Service, which forwards to the health store. // The report may be accepted by the gateway, but rejected by the health store after extra validation. // For example, the health store may reject the report because of an invalid parameter, like a stale sequence number. // To see whether the report was applied in the health store, run GetServiceHealth and check that the report appears in // the HealthEvents section. // Parameters: // serviceID - the identity of the service. This is typically the full name of the service without the // 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the service name is "fabric:/myapp/app1/svc1", the service identity would be // "myapp~app1~svc1" in 6.0+ and "myapp/app1/svc1" in previous versions. // healthInformation - describes the health information for the health report. This information needs to be // present in all of the health reports sent to the health manager. // immediate - a flag which indicates whether the report should be sent immediately. // A health report is sent to a Service Fabric gateway Application, which forwards to the health store. // If Immediate is set to true, the report is sent immediately from HTTP Gateway to the health store, // regardless of the fabric client settings that the HTTP Gateway Application is using. // This is useful for critical reports that should be sent as soon as possible. // Depending on timing and other conditions, sending the report may still fail, for example if the HTTP Gateway // is closed or the message doesn't reach the Gateway. // If Immediate is set to false, the report is sent based on the health client settings from the HTTP Gateway. // Therefore, it will be batched according to the HealthReportSendInterval configuration. // This is the recommended setting because it allows the health client to optimize health reporting messages to // health store as well as health report processing. // By default, reports are not sent immediately. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) ReportServiceHealth(ctx context.Context, serviceID string, healthInformation HealthInformation, immediate *bool, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.ReportServiceHealth") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: healthInformation, Constraints: []validation.Constraint{{Target: "healthInformation.SourceID", Name: validation.Null, Rule: true, Chain: nil}, {Target: "healthInformation.Property", Name: validation.Null, Rule: true, Chain: nil}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "ReportServiceHealth", err.Error()) } req, err := client.ReportServiceHealthPreparer(ctx, serviceID, healthInformation, immediate, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ReportServiceHealth", nil, "Failure preparing request") return } resp, err := client.ReportServiceHealthSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ReportServiceHealth", resp, "Failure sending request") return } result, err = client.ReportServiceHealthResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ReportServiceHealth", resp, "Failure responding to request") return } return } // ReportServiceHealthPreparer prepares the ReportServiceHealth request. func (client BaseClient) ReportServiceHealthPreparer(ctx context.Context, serviceID string, healthInformation HealthInformation, immediate *bool, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "serviceId": serviceID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if immediate != nil { queryParameters["Immediate"] = autorest.Encode("query", *immediate) } else { queryParameters["Immediate"] = autorest.Encode("query", false) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Services/{serviceId}/$/ReportHealth", pathParameters), autorest.WithJSON(healthInformation), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ReportServiceHealthSender sends the ReportServiceHealth request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) ReportServiceHealthSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // ReportServiceHealthResponder handles the response to the ReportServiceHealth request. The method always // closes the http.Response Body. func (client BaseClient) ReportServiceHealthResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // ResetPartitionLoad resets the current load of a Service Fabric partition to the default load for the service. // Parameters: // partitionID - the identity of the partition. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) ResetPartitionLoad(ctx context.Context, partitionID uuid.UUID, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.ResetPartitionLoad") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "ResetPartitionLoad", err.Error()) } req, err := client.ResetPartitionLoadPreparer(ctx, partitionID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ResetPartitionLoad", nil, "Failure preparing request") return } resp, err := client.ResetPartitionLoadSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ResetPartitionLoad", resp, "Failure sending request") return } result, err = client.ResetPartitionLoadResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ResetPartitionLoad", resp, "Failure responding to request") return } return } // ResetPartitionLoadPreparer prepares the ResetPartitionLoad request. func (client BaseClient) ResetPartitionLoadPreparer(ctx context.Context, partitionID uuid.UUID, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "partitionId": partitionID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Partitions/{partitionId}/$/ResetLoad", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ResetPartitionLoadSender sends the ResetPartitionLoad request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) ResetPartitionLoadSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // ResetPartitionLoadResponder handles the response to the ResetPartitionLoad request. The method always // closes the http.Response Body. func (client BaseClient) ResetPartitionLoadResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // ResolveService resolve a Service Fabric service partition to get the endpoints of the service replicas. // Parameters: // serviceID - the identity of the service. This is typically the full name of the service without the // 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the service name is "fabric:/myapp/app1/svc1", the service identity would be // "myapp~app1~svc1" in 6.0+ and "myapp/app1/svc1" in previous versions. // partitionKeyType - key type for the partition. This parameter is required if the partition scheme for the // service is Int64Range or Named. The possible values are following. // - None (1) - Indicates that the PartitionKeyValue parameter is not specified. This is valid for the // partitions with partitioning scheme as Singleton. This is the default value. The value is 1. // - Int64Range (2) - Indicates that the PartitionKeyValue parameter is an int64 partition key. This is valid // for the partitions with partitioning scheme as Int64Range. The value is 2. // - Named (3) - Indicates that the PartitionKeyValue parameter is a name of the partition. This is valid for // the partitions with partitioning scheme as Named. The value is 3. // partitionKeyValue - partition key. This is required if the partition scheme for the service is Int64Range or // Named. // previousRspVersion - the value in the Version field of the response that was received previously. This is // required if the user knows that the result that was got previously is stale. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) ResolveService(ctx context.Context, serviceID string, partitionKeyType *int32, partitionKeyValue string, previousRspVersion string, timeout *int64) (result ResolvedServicePartition, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.ResolveService") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "ResolveService", err.Error()) } req, err := client.ResolveServicePreparer(ctx, serviceID, partitionKeyType, partitionKeyValue, previousRspVersion, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ResolveService", nil, "Failure preparing request") return } resp, err := client.ResolveServiceSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ResolveService", resp, "Failure sending request") return } result, err = client.ResolveServiceResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ResolveService", resp, "Failure responding to request") return } return } // ResolveServicePreparer prepares the ResolveService request. func (client BaseClient) ResolveServicePreparer(ctx context.Context, serviceID string, partitionKeyType *int32, partitionKeyValue string, previousRspVersion string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "serviceId": serviceID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if partitionKeyType != nil { queryParameters["PartitionKeyType"] = autorest.Encode("query", *partitionKeyType) } if len(partitionKeyValue) > 0 { queryParameters["PartitionKeyValue"] = partitionKeyValue } if len(previousRspVersion) > 0 { queryParameters["PreviousRspVersion"] = previousRspVersion } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsGet(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Services/{serviceId}/$/ResolvePartition", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ResolveServiceSender sends the ResolveService request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) ResolveServiceSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // ResolveServiceResponder handles the response to the ResolveService request. The method always // closes the http.Response Body. func (client BaseClient) ResolveServiceResponder(resp *http.Response) (result ResolvedServicePartition, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // RestartDeployedCodePackage restarts a code package deployed on a Service Fabric node in a cluster. This aborts the // code package process, which will restart all the user service replicas hosted in that process. // Parameters: // nodeName - the name of the node. // applicationID - the identity of the application. This is typically the full name of the application without // the 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the application name is "fabric:/myapp/app1", the application identity would be "myapp~app1" // in 6.0+ and "myapp/app1" in previous versions. // restartDeployedCodePackageDescription - describes the deployed code package on Service Fabric node to // restart. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) RestartDeployedCodePackage(ctx context.Context, nodeName string, applicationID string, restartDeployedCodePackageDescription RestartDeployedCodePackageDescription, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.RestartDeployedCodePackage") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: restartDeployedCodePackageDescription, Constraints: []validation.Constraint{{Target: "restartDeployedCodePackageDescription.ServiceManifestName", Name: validation.Null, Rule: true, Chain: nil}, {Target: "restartDeployedCodePackageDescription.CodePackageName", Name: validation.Null, Rule: true, Chain: nil}, {Target: "restartDeployedCodePackageDescription.CodePackageInstanceID", Name: validation.Null, Rule: true, Chain: nil}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "RestartDeployedCodePackage", err.Error()) } req, err := client.RestartDeployedCodePackagePreparer(ctx, nodeName, applicationID, restartDeployedCodePackageDescription, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "RestartDeployedCodePackage", nil, "Failure preparing request") return } resp, err := client.RestartDeployedCodePackageSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "RestartDeployedCodePackage", resp, "Failure sending request") return } result, err = client.RestartDeployedCodePackageResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "RestartDeployedCodePackage", resp, "Failure responding to request") return } return } // RestartDeployedCodePackagePreparer prepares the RestartDeployedCodePackage request. func (client BaseClient) RestartDeployedCodePackagePreparer(ctx context.Context, nodeName string, applicationID string, restartDeployedCodePackageDescription RestartDeployedCodePackageDescription, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationId": applicationID, "nodeName": autorest.Encode("path", nodeName), } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Nodes/{nodeName}/$/GetApplications/{applicationId}/$/GetCodePackages/$/Restart", pathParameters), autorest.WithJSON(restartDeployedCodePackageDescription), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // RestartDeployedCodePackageSender sends the RestartDeployedCodePackage request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) RestartDeployedCodePackageSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // RestartDeployedCodePackageResponder handles the response to the RestartDeployedCodePackage request. The method always // closes the http.Response Body. func (client BaseClient) RestartDeployedCodePackageResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // RestartNode restarts a Service Fabric cluster node that is already started. // Parameters: // nodeName - the name of the node. // restartNodeDescription - the instance of the node to be restarted and a flag indicating the need to take // dump of the fabric process. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) RestartNode(ctx context.Context, nodeName string, restartNodeDescription RestartNodeDescription, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.RestartNode") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: restartNodeDescription, Constraints: []validation.Constraint{{Target: "restartNodeDescription.NodeInstanceID", Name: validation.Null, Rule: true, Chain: nil}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "RestartNode", err.Error()) } req, err := client.RestartNodePreparer(ctx, nodeName, restartNodeDescription, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "RestartNode", nil, "Failure preparing request") return } resp, err := client.RestartNodeSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "RestartNode", resp, "Failure sending request") return } result, err = client.RestartNodeResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "RestartNode", resp, "Failure responding to request") return } return } // RestartNodePreparer prepares the RestartNode request. func (client BaseClient) RestartNodePreparer(ctx context.Context, nodeName string, restartNodeDescription RestartNodeDescription, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "nodeName": autorest.Encode("path", nodeName), } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Nodes/{nodeName}/$/Restart", pathParameters), autorest.WithJSON(restartNodeDescription), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // RestartNodeSender sends the RestartNode request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) RestartNodeSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // RestartNodeResponder handles the response to the RestartNode request. The method always // closes the http.Response Body. func (client BaseClient) RestartNodeResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // RestartReplica restarts a service replica of a persisted service running on a node. Warning - There are no safety // checks performed when this API is used. Incorrect use of this API can lead to availability loss for stateful // services. // Parameters: // nodeName - the name of the node. // partitionID - the identity of the partition. // replicaID - the identifier of the replica. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) RestartReplica(ctx context.Context, nodeName string, partitionID uuid.UUID, replicaID string, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.RestartReplica") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "RestartReplica", err.Error()) } req, err := client.RestartReplicaPreparer(ctx, nodeName, partitionID, replicaID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "RestartReplica", nil, "Failure preparing request") return } resp, err := client.RestartReplicaSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "RestartReplica", resp, "Failure sending request") return } result, err = client.RestartReplicaResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "RestartReplica", resp, "Failure responding to request") return } return } // RestartReplicaPreparer prepares the RestartReplica request. func (client BaseClient) RestartReplicaPreparer(ctx context.Context, nodeName string, partitionID uuid.UUID, replicaID string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "nodeName": autorest.Encode("path", nodeName), "partitionId": partitionID, "replicaId": replicaID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Nodes/{nodeName}/$/GetPartitions/{partitionId}/$/GetReplicas/{replicaId}/$/Restart", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // RestartReplicaSender sends the RestartReplica request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) RestartReplicaSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // RestartReplicaResponder handles the response to the RestartReplica request. The method always // closes the http.Response Body. func (client BaseClient) RestartReplicaResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // RestorePartition restores the state of a of the stateful persisted partition using the specified backup point. In // case the partition is already being periodically backed up, then by default the backup point is looked for in the // storage specified in backup policy. One can also override the same by specifying the backup storage details as part // of the restore partition description in body. Once the restore is initiated, its progress can be tracked using the // GetRestoreProgress operation. // In case, the operation times out, specify a greater restore timeout value in the query parameter. // Parameters: // partitionID - the identity of the partition. // restorePartitionDescription - describes the parameters to restore the partition. // restoreTimeout - specifies the maximum amount of time to wait, in minutes, for the restore operation to // complete. Post that, the operation returns back with timeout error. However, in certain corner cases it // could be that the restore operation goes through even though it completes with timeout. In case of timeout // error, its recommended to invoke this operation again with a greater timeout value. the default value for // the same is 10 minutes. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) RestorePartition(ctx context.Context, partitionID uuid.UUID, restorePartitionDescription RestorePartitionDescription, restoreTimeout *int32, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.RestorePartition") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: restorePartitionDescription, Constraints: []validation.Constraint{{Target: "restorePartitionDescription.BackupID", Name: validation.Null, Rule: true, Chain: nil}, {Target: "restorePartitionDescription.BackupLocation", Name: validation.Null, Rule: true, Chain: nil}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "RestorePartition", err.Error()) } req, err := client.RestorePartitionPreparer(ctx, partitionID, restorePartitionDescription, restoreTimeout, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "RestorePartition", nil, "Failure preparing request") return } resp, err := client.RestorePartitionSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "RestorePartition", resp, "Failure sending request") return } result, err = client.RestorePartitionResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "RestorePartition", resp, "Failure responding to request") return } return } // RestorePartitionPreparer prepares the RestorePartition request. func (client BaseClient) RestorePartitionPreparer(ctx context.Context, partitionID uuid.UUID, restorePartitionDescription RestorePartitionDescription, restoreTimeout *int32, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "partitionId": partitionID, } const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if restoreTimeout != nil { queryParameters["RestoreTimeout"] = autorest.Encode("query", *restoreTimeout) } else { queryParameters["RestoreTimeout"] = autorest.Encode("query", 10) } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Partitions/{partitionId}/$/Restore", pathParameters), autorest.WithJSON(restorePartitionDescription), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // RestorePartitionSender sends the RestorePartition request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) RestorePartitionSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // RestorePartitionResponder handles the response to the RestorePartition request. The method always // closes the http.Response Body. func (client BaseClient) RestorePartitionResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), autorest.ByClosing()) result.Response = resp return } // ResumeApplicationBackup the previously suspended Service Fabric application resumes taking periodic backup as per // the backup policy currently configured for the same. // Parameters: // applicationID - the identity of the application. This is typically the full name of the application without // the 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the application name is "fabric:/myapp/app1", the application identity would be "myapp~app1" // in 6.0+ and "myapp/app1" in previous versions. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) ResumeApplicationBackup(ctx context.Context, applicationID string, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.ResumeApplicationBackup") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "ResumeApplicationBackup", err.Error()) } req, err := client.ResumeApplicationBackupPreparer(ctx, applicationID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ResumeApplicationBackup", nil, "Failure preparing request") return } resp, err := client.ResumeApplicationBackupSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ResumeApplicationBackup", resp, "Failure sending request") return } result, err = client.ResumeApplicationBackupResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ResumeApplicationBackup", resp, "Failure responding to request") return } return } // ResumeApplicationBackupPreparer prepares the ResumeApplicationBackup request. func (client BaseClient) ResumeApplicationBackupPreparer(ctx context.Context, applicationID string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationId": applicationID, } const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Applications/{applicationId}/$/ResumeBackup", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ResumeApplicationBackupSender sends the ResumeApplicationBackup request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) ResumeApplicationBackupSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // ResumeApplicationBackupResponder handles the response to the ResumeApplicationBackup request. The method always // closes the http.Response Body. func (client BaseClient) ResumeApplicationBackupResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), autorest.ByClosing()) result.Response = resp return } // ResumeApplicationUpgrade resumes an unmonitored manual Service Fabric application upgrade. Service Fabric upgrades // one upgrade domain at a time. For unmonitored manual upgrades, after Service Fabric finishes an upgrade domain, it // waits for you to call this API before proceeding to the next upgrade domain. // Parameters: // applicationID - the identity of the application. This is typically the full name of the application without // the 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the application name is "fabric:/myapp/app1", the application identity would be "myapp~app1" // in 6.0+ and "myapp/app1" in previous versions. // resumeApplicationUpgradeDescription - describes the parameters for resuming an application upgrade. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) ResumeApplicationUpgrade(ctx context.Context, applicationID string, resumeApplicationUpgradeDescription ResumeApplicationUpgradeDescription, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.ResumeApplicationUpgrade") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: resumeApplicationUpgradeDescription, Constraints: []validation.Constraint{{Target: "resumeApplicationUpgradeDescription.UpgradeDomainName", Name: validation.Null, Rule: true, Chain: nil}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "ResumeApplicationUpgrade", err.Error()) } req, err := client.ResumeApplicationUpgradePreparer(ctx, applicationID, resumeApplicationUpgradeDescription, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ResumeApplicationUpgrade", nil, "Failure preparing request") return } resp, err := client.ResumeApplicationUpgradeSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ResumeApplicationUpgrade", resp, "Failure sending request") return } result, err = client.ResumeApplicationUpgradeResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ResumeApplicationUpgrade", resp, "Failure responding to request") return } return } // ResumeApplicationUpgradePreparer prepares the ResumeApplicationUpgrade request. func (client BaseClient) ResumeApplicationUpgradePreparer(ctx context.Context, applicationID string, resumeApplicationUpgradeDescription ResumeApplicationUpgradeDescription, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationId": applicationID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Applications/{applicationId}/$/MoveToNextUpgradeDomain", pathParameters), autorest.WithJSON(resumeApplicationUpgradeDescription), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ResumeApplicationUpgradeSender sends the ResumeApplicationUpgrade request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) ResumeApplicationUpgradeSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // ResumeApplicationUpgradeResponder handles the response to the ResumeApplicationUpgrade request. The method always // closes the http.Response Body. func (client BaseClient) ResumeApplicationUpgradeResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // ResumeClusterUpgrade make the cluster code or configuration upgrade move on to the next upgrade domain if // appropriate. // Parameters: // resumeClusterUpgradeDescription - describes the parameters for resuming a cluster upgrade. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) ResumeClusterUpgrade(ctx context.Context, resumeClusterUpgradeDescription ResumeClusterUpgradeDescription, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.ResumeClusterUpgrade") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: resumeClusterUpgradeDescription, Constraints: []validation.Constraint{{Target: "resumeClusterUpgradeDescription.UpgradeDomain", Name: validation.Null, Rule: true, Chain: nil}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "ResumeClusterUpgrade", err.Error()) } req, err := client.ResumeClusterUpgradePreparer(ctx, resumeClusterUpgradeDescription, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ResumeClusterUpgrade", nil, "Failure preparing request") return } resp, err := client.ResumeClusterUpgradeSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ResumeClusterUpgrade", resp, "Failure sending request") return } result, err = client.ResumeClusterUpgradeResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ResumeClusterUpgrade", resp, "Failure responding to request") return } return } // ResumeClusterUpgradePreparer prepares the ResumeClusterUpgrade request. func (client BaseClient) ResumeClusterUpgradePreparer(ctx context.Context, resumeClusterUpgradeDescription ResumeClusterUpgradeDescription, timeout *int64) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/$/MoveToNextUpgradeDomain"), autorest.WithJSON(resumeClusterUpgradeDescription), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ResumeClusterUpgradeSender sends the ResumeClusterUpgrade request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) ResumeClusterUpgradeSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // ResumeClusterUpgradeResponder handles the response to the ResumeClusterUpgrade request. The method always // closes the http.Response Body. func (client BaseClient) ResumeClusterUpgradeResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // ResumePartitionBackup the previously suspended partition resumes taking periodic backup as per the backup policy // currently configured for the same. // Parameters: // partitionID - the identity of the partition. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) ResumePartitionBackup(ctx context.Context, partitionID uuid.UUID, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.ResumePartitionBackup") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "ResumePartitionBackup", err.Error()) } req, err := client.ResumePartitionBackupPreparer(ctx, partitionID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ResumePartitionBackup", nil, "Failure preparing request") return } resp, err := client.ResumePartitionBackupSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ResumePartitionBackup", resp, "Failure sending request") return } result, err = client.ResumePartitionBackupResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ResumePartitionBackup", resp, "Failure responding to request") return } return } // ResumePartitionBackupPreparer prepares the ResumePartitionBackup request. func (client BaseClient) ResumePartitionBackupPreparer(ctx context.Context, partitionID uuid.UUID, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "partitionId": partitionID, } const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Partitions/{partitionId}/$/ResumeBackup", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ResumePartitionBackupSender sends the ResumePartitionBackup request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) ResumePartitionBackupSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // ResumePartitionBackupResponder handles the response to the ResumePartitionBackup request. The method always // closes the http.Response Body. func (client BaseClient) ResumePartitionBackupResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), autorest.ByClosing()) result.Response = resp return } // ResumeServiceBackup the previously suspended Service Fabric service resumes taking periodic backup as per the backup // policy currently configured for the same. // Parameters: // serviceID - the identity of the service. This is typically the full name of the service without the // 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the service name is "fabric:/myapp/app1/svc1", the service identity would be // "myapp~app1~svc1" in 6.0+ and "myapp/app1/svc1" in previous versions. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) ResumeServiceBackup(ctx context.Context, serviceID string, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.ResumeServiceBackup") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "ResumeServiceBackup", err.Error()) } req, err := client.ResumeServiceBackupPreparer(ctx, serviceID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ResumeServiceBackup", nil, "Failure preparing request") return } resp, err := client.ResumeServiceBackupSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ResumeServiceBackup", resp, "Failure sending request") return } result, err = client.ResumeServiceBackupResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "ResumeServiceBackup", resp, "Failure responding to request") return } return } // ResumeServiceBackupPreparer prepares the ResumeServiceBackup request. func (client BaseClient) ResumeServiceBackupPreparer(ctx context.Context, serviceID string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "serviceId": serviceID, } const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Services/{serviceId}/$/ResumeBackup", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // ResumeServiceBackupSender sends the ResumeServiceBackup request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) ResumeServiceBackupSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // ResumeServiceBackupResponder handles the response to the ResumeServiceBackup request. The method always // closes the http.Response Body. func (client BaseClient) ResumeServiceBackupResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), autorest.ByClosing()) result.Response = resp return } // RollbackApplicationUpgrade starts rolling back the current application upgrade to the previous version. This API can // only be used to rollback the current in-progress upgrade that is rolling forward to new version. If the application // is not currently being upgraded use StartApplicationUpgrade API to upgrade it to desired version, including rolling // back to a previous version. // Parameters: // applicationID - the identity of the application. This is typically the full name of the application without // the 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the application name is "fabric:/myapp/app1", the application identity would be "myapp~app1" // in 6.0+ and "myapp/app1" in previous versions. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) RollbackApplicationUpgrade(ctx context.Context, applicationID string, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.RollbackApplicationUpgrade") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "RollbackApplicationUpgrade", err.Error()) } req, err := client.RollbackApplicationUpgradePreparer(ctx, applicationID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "RollbackApplicationUpgrade", nil, "Failure preparing request") return } resp, err := client.RollbackApplicationUpgradeSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "RollbackApplicationUpgrade", resp, "Failure sending request") return } result, err = client.RollbackApplicationUpgradeResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "RollbackApplicationUpgrade", resp, "Failure responding to request") return } return } // RollbackApplicationUpgradePreparer prepares the RollbackApplicationUpgrade request. func (client BaseClient) RollbackApplicationUpgradePreparer(ctx context.Context, applicationID string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationId": applicationID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Applications/{applicationId}/$/RollbackUpgrade", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // RollbackApplicationUpgradeSender sends the RollbackApplicationUpgrade request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) RollbackApplicationUpgradeSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // RollbackApplicationUpgradeResponder handles the response to the RollbackApplicationUpgrade request. The method always // closes the http.Response Body. func (client BaseClient) RollbackApplicationUpgradeResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // RollbackClusterUpgrade rollback the code or configuration upgrade of a Service Fabric cluster. // Parameters: // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) RollbackClusterUpgrade(ctx context.Context, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.RollbackClusterUpgrade") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "RollbackClusterUpgrade", err.Error()) } req, err := client.RollbackClusterUpgradePreparer(ctx, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "RollbackClusterUpgrade", nil, "Failure preparing request") return } resp, err := client.RollbackClusterUpgradeSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "RollbackClusterUpgrade", resp, "Failure sending request") return } result, err = client.RollbackClusterUpgradeResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "RollbackClusterUpgrade", resp, "Failure responding to request") return } return } // RollbackClusterUpgradePreparer prepares the RollbackClusterUpgrade request. func (client BaseClient) RollbackClusterUpgradePreparer(ctx context.Context, timeout *int64) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/$/RollbackUpgrade"), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // RollbackClusterUpgradeSender sends the RollbackClusterUpgrade request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) RollbackClusterUpgradeSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // RollbackClusterUpgradeResponder handles the response to the RollbackClusterUpgrade request. The method always // closes the http.Response Body. func (client BaseClient) RollbackClusterUpgradeResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), autorest.ByClosing()) result.Response = resp return } // SetUpgradeOrchestrationServiceState update the service state of Service Fabric Upgrade Orchestration Service. This // API is internally used for support purposes. // Parameters: // upgradeOrchestrationServiceState - service state of Service Fabric Upgrade Orchestration Service. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) SetUpgradeOrchestrationServiceState(ctx context.Context, upgradeOrchestrationServiceState UpgradeOrchestrationServiceState, timeout *int64) (result UpgradeOrchestrationServiceStateSummary, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.SetUpgradeOrchestrationServiceState") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "SetUpgradeOrchestrationServiceState", err.Error()) } req, err := client.SetUpgradeOrchestrationServiceStatePreparer(ctx, upgradeOrchestrationServiceState, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "SetUpgradeOrchestrationServiceState", nil, "Failure preparing request") return } resp, err := client.SetUpgradeOrchestrationServiceStateSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "SetUpgradeOrchestrationServiceState", resp, "Failure sending request") return } result, err = client.SetUpgradeOrchestrationServiceStateResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "SetUpgradeOrchestrationServiceState", resp, "Failure responding to request") return } return } // SetUpgradeOrchestrationServiceStatePreparer prepares the SetUpgradeOrchestrationServiceState request. func (client BaseClient) SetUpgradeOrchestrationServiceStatePreparer(ctx context.Context, upgradeOrchestrationServiceState UpgradeOrchestrationServiceState, timeout *int64) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/$/SetUpgradeOrchestrationServiceState"), autorest.WithJSON(upgradeOrchestrationServiceState), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // SetUpgradeOrchestrationServiceStateSender sends the SetUpgradeOrchestrationServiceState request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) SetUpgradeOrchestrationServiceStateSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // SetUpgradeOrchestrationServiceStateResponder handles the response to the SetUpgradeOrchestrationServiceState request. The method always // closes the http.Response Body. func (client BaseClient) SetUpgradeOrchestrationServiceStateResponder(resp *http.Response) (result UpgradeOrchestrationServiceStateSummary, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // StartApplicationUpgrade validates the supplied application upgrade parameters and starts upgrading the application // if the parameters are valid. // Parameters: // applicationID - the identity of the application. This is typically the full name of the application without // the 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the application name is "fabric:/myapp/app1", the application identity would be "myapp~app1" // in 6.0+ and "myapp/app1" in previous versions. // applicationUpgradeDescription - parameters for an application upgrade. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) StartApplicationUpgrade(ctx context.Context, applicationID string, applicationUpgradeDescription ApplicationUpgradeDescription, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.StartApplicationUpgrade") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: applicationUpgradeDescription, Constraints: []validation.Constraint{{Target: "applicationUpgradeDescription.Name", Name: validation.Null, Rule: true, Chain: nil}, {Target: "applicationUpgradeDescription.TargetApplicationTypeVersion", Name: validation.Null, Rule: true, Chain: nil}, {Target: "applicationUpgradeDescription.Parameters", Name: validation.Null, Rule: true, Chain: nil}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "StartApplicationUpgrade", err.Error()) } req, err := client.StartApplicationUpgradePreparer(ctx, applicationID, applicationUpgradeDescription, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "StartApplicationUpgrade", nil, "Failure preparing request") return } resp, err := client.StartApplicationUpgradeSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "StartApplicationUpgrade", resp, "Failure sending request") return } result, err = client.StartApplicationUpgradeResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "StartApplicationUpgrade", resp, "Failure responding to request") return } return } // StartApplicationUpgradePreparer prepares the StartApplicationUpgrade request. func (client BaseClient) StartApplicationUpgradePreparer(ctx context.Context, applicationID string, applicationUpgradeDescription ApplicationUpgradeDescription, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationId": applicationID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Applications/{applicationId}/$/Upgrade", pathParameters), autorest.WithJSON(applicationUpgradeDescription), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // StartApplicationUpgradeSender sends the StartApplicationUpgrade request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) StartApplicationUpgradeSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // StartApplicationUpgradeResponder handles the response to the StartApplicationUpgrade request. The method always // closes the http.Response Body. func (client BaseClient) StartApplicationUpgradeResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // StartChaos if Chaos is not already running in the cluster, it starts Chaos with the passed in Chaos parameters. // If Chaos is already running when this call is made, the call fails with the error code // FABRIC_E_CHAOS_ALREADY_RUNNING. // Please refer to the article [Induce controlled Chaos in Service Fabric // clusters](https://docs.microsoft.com/en-us/azure/service-fabric/service-fabric-controlled-chaos) for more details. // Parameters: // chaosParameters - describes all the parameters to configure a Chaos run. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) StartChaos(ctx context.Context, chaosParameters ChaosParameters, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.StartChaos") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: chaosParameters, Constraints: []validation.Constraint{{Target: "chaosParameters.MaxClusterStabilizationTimeoutInSeconds", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "chaosParameters.MaxClusterStabilizationTimeoutInSeconds", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "chaosParameters.MaxClusterStabilizationTimeoutInSeconds", Name: validation.InclusiveMinimum, Rule: int64(0), Chain: nil}, }}, {Target: "chaosParameters.MaxConcurrentFaults", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "chaosParameters.MaxConcurrentFaults", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "chaosParameters.MaxConcurrentFaults", Name: validation.InclusiveMinimum, Rule: int64(0), Chain: nil}, }}, {Target: "chaosParameters.WaitTimeBetweenFaultsInSeconds", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "chaosParameters.WaitTimeBetweenFaultsInSeconds", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "chaosParameters.WaitTimeBetweenFaultsInSeconds", Name: validation.InclusiveMinimum, Rule: int64(0), Chain: nil}, }}, {Target: "chaosParameters.WaitTimeBetweenIterationsInSeconds", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "chaosParameters.WaitTimeBetweenIterationsInSeconds", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "chaosParameters.WaitTimeBetweenIterationsInSeconds", Name: validation.InclusiveMinimum, Rule: int64(0), Chain: nil}, }}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "StartChaos", err.Error()) } req, err := client.StartChaosPreparer(ctx, chaosParameters, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "StartChaos", nil, "Failure preparing request") return } resp, err := client.StartChaosSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "StartChaos", resp, "Failure sending request") return } result, err = client.StartChaosResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "StartChaos", resp, "Failure responding to request") return } return } // StartChaosPreparer prepares the StartChaos request. func (client BaseClient) StartChaosPreparer(ctx context.Context, chaosParameters ChaosParameters, timeout *int64) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/Tools/Chaos/$/Start"), autorest.WithJSON(chaosParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // StartChaosSender sends the StartChaos request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) StartChaosSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // StartChaosResponder handles the response to the StartChaos request. The method always // closes the http.Response Body. func (client BaseClient) StartChaosResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // StartClusterConfigurationUpgrade validate the supplied configuration upgrade parameters and start upgrading the // cluster configuration if the parameters are valid. // Parameters: // clusterConfigurationUpgradeDescription - parameters for a standalone cluster configuration upgrade. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) StartClusterConfigurationUpgrade(ctx context.Context, clusterConfigurationUpgradeDescription ClusterConfigurationUpgradeDescription, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.StartClusterConfigurationUpgrade") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: clusterConfigurationUpgradeDescription, Constraints: []validation.Constraint{{Target: "clusterConfigurationUpgradeDescription.ClusterConfig", Name: validation.Null, Rule: true, Chain: nil}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "StartClusterConfigurationUpgrade", err.Error()) } req, err := client.StartClusterConfigurationUpgradePreparer(ctx, clusterConfigurationUpgradeDescription, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "StartClusterConfigurationUpgrade", nil, "Failure preparing request") return } resp, err := client.StartClusterConfigurationUpgradeSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "StartClusterConfigurationUpgrade", resp, "Failure sending request") return } result, err = client.StartClusterConfigurationUpgradeResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "StartClusterConfigurationUpgrade", resp, "Failure responding to request") return } return } // StartClusterConfigurationUpgradePreparer prepares the StartClusterConfigurationUpgrade request. func (client BaseClient) StartClusterConfigurationUpgradePreparer(ctx context.Context, clusterConfigurationUpgradeDescription ClusterConfigurationUpgradeDescription, timeout *int64) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/$/StartClusterConfigurationUpgrade"), autorest.WithJSON(clusterConfigurationUpgradeDescription), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // StartClusterConfigurationUpgradeSender sends the StartClusterConfigurationUpgrade request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) StartClusterConfigurationUpgradeSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // StartClusterConfigurationUpgradeResponder handles the response to the StartClusterConfigurationUpgrade request. The method always // closes the http.Response Body. func (client BaseClient) StartClusterConfigurationUpgradeResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), autorest.ByClosing()) result.Response = resp return } // StartClusterUpgrade validate the supplied upgrade parameters and start upgrading the code or configuration version // of a Service Fabric cluster if the parameters are valid. // Parameters: // startClusterUpgradeDescription - describes the parameters for starting a cluster upgrade. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) StartClusterUpgrade(ctx context.Context, startClusterUpgradeDescription StartClusterUpgradeDescription, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.StartClusterUpgrade") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: startClusterUpgradeDescription, Constraints: []validation.Constraint{{Target: "startClusterUpgradeDescription.ClusterUpgradeHealthPolicy", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "startClusterUpgradeDescription.ClusterUpgradeHealthPolicy.MaxPercentDeltaUnhealthyNodes", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "startClusterUpgradeDescription.ClusterUpgradeHealthPolicy.MaxPercentDeltaUnhealthyNodes", Name: validation.InclusiveMaximum, Rule: int64(100), Chain: nil}, {Target: "startClusterUpgradeDescription.ClusterUpgradeHealthPolicy.MaxPercentDeltaUnhealthyNodes", Name: validation.InclusiveMinimum, Rule: int64(0), Chain: nil}, }}, {Target: "startClusterUpgradeDescription.ClusterUpgradeHealthPolicy.MaxPercentUpgradeDomainDeltaUnhealthyNodes", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "startClusterUpgradeDescription.ClusterUpgradeHealthPolicy.MaxPercentUpgradeDomainDeltaUnhealthyNodes", Name: validation.InclusiveMaximum, Rule: int64(100), Chain: nil}, {Target: "startClusterUpgradeDescription.ClusterUpgradeHealthPolicy.MaxPercentUpgradeDomainDeltaUnhealthyNodes", Name: validation.InclusiveMinimum, Rule: int64(0), Chain: nil}, }}, }}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "StartClusterUpgrade", err.Error()) } req, err := client.StartClusterUpgradePreparer(ctx, startClusterUpgradeDescription, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "StartClusterUpgrade", nil, "Failure preparing request") return } resp, err := client.StartClusterUpgradeSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "StartClusterUpgrade", resp, "Failure sending request") return } result, err = client.StartClusterUpgradeResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "StartClusterUpgrade", resp, "Failure responding to request") return } return } // StartClusterUpgradePreparer prepares the StartClusterUpgrade request. func (client BaseClient) StartClusterUpgradePreparer(ctx context.Context, startClusterUpgradeDescription StartClusterUpgradeDescription, timeout *int64) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/$/Upgrade"), autorest.WithJSON(startClusterUpgradeDescription), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // StartClusterUpgradeSender sends the StartClusterUpgrade request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) StartClusterUpgradeSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // StartClusterUpgradeResponder handles the response to the StartClusterUpgrade request. The method always // closes the http.Response Body. func (client BaseClient) StartClusterUpgradeResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), autorest.ByClosing()) result.Response = resp return } // StartComposeDeploymentUpgrade validates the supplied upgrade parameters and starts upgrading the deployment if the // parameters are valid. // Parameters: // deploymentName - the identity of the deployment. // composeDeploymentUpgradeDescription - parameters for upgrading compose deployment. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) StartComposeDeploymentUpgrade(ctx context.Context, deploymentName string, composeDeploymentUpgradeDescription ComposeDeploymentUpgradeDescription, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.StartComposeDeploymentUpgrade") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: composeDeploymentUpgradeDescription, Constraints: []validation.Constraint{{Target: "composeDeploymentUpgradeDescription.DeploymentName", Name: validation.Null, Rule: true, Chain: nil}, {Target: "composeDeploymentUpgradeDescription.ComposeFileContent", Name: validation.Null, Rule: true, Chain: nil}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "StartComposeDeploymentUpgrade", err.Error()) } req, err := client.StartComposeDeploymentUpgradePreparer(ctx, deploymentName, composeDeploymentUpgradeDescription, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "StartComposeDeploymentUpgrade", nil, "Failure preparing request") return } resp, err := client.StartComposeDeploymentUpgradeSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "StartComposeDeploymentUpgrade", resp, "Failure sending request") return } result, err = client.StartComposeDeploymentUpgradeResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "StartComposeDeploymentUpgrade", resp, "Failure responding to request") return } return } // StartComposeDeploymentUpgradePreparer prepares the StartComposeDeploymentUpgrade request. func (client BaseClient) StartComposeDeploymentUpgradePreparer(ctx context.Context, deploymentName string, composeDeploymentUpgradeDescription ComposeDeploymentUpgradeDescription, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "deploymentName": deploymentName, } const APIVersion = "6.0-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/ComposeDeployments/{deploymentName}/$/Upgrade", pathParameters), autorest.WithJSON(composeDeploymentUpgradeDescription), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // StartComposeDeploymentUpgradeSender sends the StartComposeDeploymentUpgrade request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) StartComposeDeploymentUpgradeSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // StartComposeDeploymentUpgradeResponder handles the response to the StartComposeDeploymentUpgrade request. The method always // closes the http.Response Body. func (client BaseClient) StartComposeDeploymentUpgradeResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), autorest.ByClosing()) result.Response = resp return } // StartDataLoss this API will induce data loss for the specified partition. It will trigger a call to the OnDataLoss // API of the partition. // Actual data loss will depend on the specified DataLossMode // PartialDataLoss - Only a quorum of replicas are removed and OnDataLoss is triggered for the partition but actual // data loss depends on the presence of in-flight replication. // FullDataLoss - All replicas are removed hence all data is lost and OnDataLoss is triggered. // // This API should only be called with a stateful service as the target. // // Calling this API with a system service as the target is not advised. // // Note: Once this API has been called, it cannot be reversed. Calling CancelOperation will only stop execution and // clean up internal system state. // It will not restore data if the command has progressed far enough to cause data loss. // // Call the GetDataLossProgress API with the same OperationId to return information on the operation started with this // API. // Parameters: // serviceID - the identity of the service. This is typically the full name of the service without the // 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the service name is "fabric:/myapp/app1/svc1", the service identity would be // "myapp~app1~svc1" in 6.0+ and "myapp/app1/svc1" in previous versions. // partitionID - the identity of the partition. // operationID - a GUID that identifies a call of this API. This is passed into the corresponding GetProgress // API // dataLossMode - this enum is passed to the StartDataLoss API to indicate what type of data loss to induce. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) StartDataLoss(ctx context.Context, serviceID string, partitionID uuid.UUID, operationID uuid.UUID, dataLossMode DataLossMode, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.StartDataLoss") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "StartDataLoss", err.Error()) } req, err := client.StartDataLossPreparer(ctx, serviceID, partitionID, operationID, dataLossMode, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "StartDataLoss", nil, "Failure preparing request") return } resp, err := client.StartDataLossSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "StartDataLoss", resp, "Failure sending request") return } result, err = client.StartDataLossResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "StartDataLoss", resp, "Failure responding to request") return } return } // StartDataLossPreparer prepares the StartDataLoss request. func (client BaseClient) StartDataLossPreparer(ctx context.Context, serviceID string, partitionID uuid.UUID, operationID uuid.UUID, dataLossMode DataLossMode, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "partitionId": partitionID, "serviceId": serviceID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, "DataLossMode": autorest.Encode("query", dataLossMode), "OperationId": autorest.Encode("query", operationID), } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Faults/Services/{serviceId}/$/GetPartitions/{partitionId}/$/StartDataLoss", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // StartDataLossSender sends the StartDataLoss request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) StartDataLossSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // StartDataLossResponder handles the response to the StartDataLoss request. The method always // closes the http.Response Body. func (client BaseClient) StartDataLossResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), autorest.ByClosing()) result.Response = resp return } // StartNodeTransition starts or stops a cluster node. A cluster node is a process, not the OS instance itself. To // start a node, pass in "Start" for the NodeTransitionType parameter. // To stop a node, pass in "Stop" for the NodeTransitionType parameter. This API starts the operation - when the API // returns the node may not have finished transitioning yet. // Call GetNodeTransitionProgress with the same OperationId to get the progress of the operation. // Parameters: // nodeName - the name of the node. // operationID - a GUID that identifies a call of this API. This is passed into the corresponding GetProgress // API // nodeTransitionType - indicates the type of transition to perform. NodeTransitionType.Start will start a // stopped node. NodeTransitionType.Stop will stop a node that is up. // nodeInstanceID - the node instance ID of the target node. This can be determined through GetNodeInfo API. // stopDurationInSeconds - the duration, in seconds, to keep the node stopped. The minimum value is 600, the // maximum is 14400. After this time expires, the node will automatically come back up. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) StartNodeTransition(ctx context.Context, nodeName string, operationID uuid.UUID, nodeTransitionType NodeTransitionType, nodeInstanceID string, stopDurationInSeconds int32, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.StartNodeTransition") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: stopDurationInSeconds, Constraints: []validation.Constraint{{Target: "stopDurationInSeconds", Name: validation.InclusiveMinimum, Rule: int64(0), Chain: nil}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "StartNodeTransition", err.Error()) } req, err := client.StartNodeTransitionPreparer(ctx, nodeName, operationID, nodeTransitionType, nodeInstanceID, stopDurationInSeconds, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "StartNodeTransition", nil, "Failure preparing request") return } resp, err := client.StartNodeTransitionSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "StartNodeTransition", resp, "Failure sending request") return } result, err = client.StartNodeTransitionResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "StartNodeTransition", resp, "Failure responding to request") return } return } // StartNodeTransitionPreparer prepares the StartNodeTransition request. func (client BaseClient) StartNodeTransitionPreparer(ctx context.Context, nodeName string, operationID uuid.UUID, nodeTransitionType NodeTransitionType, nodeInstanceID string, stopDurationInSeconds int32, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "nodeName": autorest.Encode("path", nodeName), } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, "NodeInstanceId": autorest.Encode("query", nodeInstanceID), "NodeTransitionType": autorest.Encode("query", nodeTransitionType), "OperationId": autorest.Encode("query", operationID), "StopDurationInSeconds": autorest.Encode("query", stopDurationInSeconds), } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Faults/Nodes/{nodeName}/$/StartTransition/", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // StartNodeTransitionSender sends the StartNodeTransition request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) StartNodeTransitionSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // StartNodeTransitionResponder handles the response to the StartNodeTransition request. The method always // closes the http.Response Body. func (client BaseClient) StartNodeTransitionResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), autorest.ByClosing()) result.Response = resp return } // StartPartitionRestart this API is useful for testing failover. // // If used to target a stateless service partition, RestartPartitionMode must be AllReplicasOrInstances. // // Call the GetPartitionRestartProgress API using the same OperationId to get the progress. // Parameters: // serviceID - the identity of the service. This is typically the full name of the service without the // 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the service name is "fabric:/myapp/app1/svc1", the service identity would be // "myapp~app1~svc1" in 6.0+ and "myapp/app1/svc1" in previous versions. // partitionID - the identity of the partition. // operationID - a GUID that identifies a call of this API. This is passed into the corresponding GetProgress // API // restartPartitionMode - describe which partitions to restart. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) StartPartitionRestart(ctx context.Context, serviceID string, partitionID uuid.UUID, operationID uuid.UUID, restartPartitionMode RestartPartitionMode, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.StartPartitionRestart") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "StartPartitionRestart", err.Error()) } req, err := client.StartPartitionRestartPreparer(ctx, serviceID, partitionID, operationID, restartPartitionMode, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "StartPartitionRestart", nil, "Failure preparing request") return } resp, err := client.StartPartitionRestartSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "StartPartitionRestart", resp, "Failure sending request") return } result, err = client.StartPartitionRestartResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "StartPartitionRestart", resp, "Failure responding to request") return } return } // StartPartitionRestartPreparer prepares the StartPartitionRestart request. func (client BaseClient) StartPartitionRestartPreparer(ctx context.Context, serviceID string, partitionID uuid.UUID, operationID uuid.UUID, restartPartitionMode RestartPartitionMode, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "partitionId": partitionID, "serviceId": serviceID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, "OperationId": autorest.Encode("query", operationID), "RestartPartitionMode": autorest.Encode("query", restartPartitionMode), } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Faults/Services/{serviceId}/$/GetPartitions/{partitionId}/$/StartRestart", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // StartPartitionRestartSender sends the StartPartitionRestart request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) StartPartitionRestartSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // StartPartitionRestartResponder handles the response to the StartPartitionRestart request. The method always // closes the http.Response Body. func (client BaseClient) StartPartitionRestartResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), autorest.ByClosing()) result.Response = resp return } // StartQuorumLoss induces quorum loss for a given stateful service partition. This API is useful for a temporary // quorum loss situation on your service. // // Call the GetQuorumLossProgress API with the same OperationId to return information on the operation started with // this API. // // This can only be called on stateful persisted (HasPersistedState==true) services. Do not use this API on stateless // services or stateful in-memory only services. // Parameters: // serviceID - the identity of the service. This is typically the full name of the service without the // 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the service name is "fabric:/myapp/app1/svc1", the service identity would be // "myapp~app1~svc1" in 6.0+ and "myapp/app1/svc1" in previous versions. // partitionID - the identity of the partition. // operationID - a GUID that identifies a call of this API. This is passed into the corresponding GetProgress // API // quorumLossMode - this enum is passed to the StartQuorumLoss API to indicate what type of quorum loss to // induce. // quorumLossDuration - the amount of time for which the partition will be kept in quorum loss. This must be // specified in seconds. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) StartQuorumLoss(ctx context.Context, serviceID string, partitionID uuid.UUID, operationID uuid.UUID, quorumLossMode QuorumLossMode, quorumLossDuration int32, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.StartQuorumLoss") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "StartQuorumLoss", err.Error()) } req, err := client.StartQuorumLossPreparer(ctx, serviceID, partitionID, operationID, quorumLossMode, quorumLossDuration, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "StartQuorumLoss", nil, "Failure preparing request") return } resp, err := client.StartQuorumLossSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "StartQuorumLoss", resp, "Failure sending request") return } result, err = client.StartQuorumLossResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "StartQuorumLoss", resp, "Failure responding to request") return } return } // StartQuorumLossPreparer prepares the StartQuorumLoss request. func (client BaseClient) StartQuorumLossPreparer(ctx context.Context, serviceID string, partitionID uuid.UUID, operationID uuid.UUID, quorumLossMode QuorumLossMode, quorumLossDuration int32, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "partitionId": partitionID, "serviceId": serviceID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, "OperationId": autorest.Encode("query", operationID), "QuorumLossDuration": autorest.Encode("query", quorumLossDuration), "QuorumLossMode": autorest.Encode("query", quorumLossMode), } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Faults/Services/{serviceId}/$/GetPartitions/{partitionId}/$/StartQuorumLoss", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // StartQuorumLossSender sends the StartQuorumLoss request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) StartQuorumLossSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // StartQuorumLossResponder handles the response to the StartQuorumLoss request. The method always // closes the http.Response Body. func (client BaseClient) StartQuorumLossResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), autorest.ByClosing()) result.Response = resp return } // StopChaos stops Chaos from executing new faults. In-flight faults will continue to execute until they are complete. // The current Chaos Schedule is put into a stopped state. // Once a schedule is stopped it will stay in the stopped state and not be used to Chaos Schedule new runs of Chaos. A // new Chaos Schedule must be set in order to resume scheduling. // Parameters: // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) StopChaos(ctx context.Context, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.StopChaos") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "StopChaos", err.Error()) } req, err := client.StopChaosPreparer(ctx, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "StopChaos", nil, "Failure preparing request") return } resp, err := client.StopChaosSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "StopChaos", resp, "Failure sending request") return } result, err = client.StopChaosResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "StopChaos", resp, "Failure responding to request") return } return } // StopChaosPreparer prepares the StopChaos request. func (client BaseClient) StopChaosPreparer(ctx context.Context, timeout *int64) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/Tools/Chaos/$/Stop"), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // StopChaosSender sends the StopChaos request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) StopChaosSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // StopChaosResponder handles the response to the StopChaos request. The method always // closes the http.Response Body. func (client BaseClient) StopChaosResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // SubmitPropertyBatch submits a batch of property operations. Either all or none of the operations will be committed. // Parameters: // nameID - the Service Fabric name, without the 'fabric:' URI scheme. // propertyBatchDescriptionList - describes the property batch operations to be submitted. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) SubmitPropertyBatch(ctx context.Context, nameID string, propertyBatchDescriptionList PropertyBatchDescriptionList, timeout *int64) (result PropertyBatchInfoModel, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.SubmitPropertyBatch") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "SubmitPropertyBatch", err.Error()) } req, err := client.SubmitPropertyBatchPreparer(ctx, nameID, propertyBatchDescriptionList, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "SubmitPropertyBatch", nil, "Failure preparing request") return } resp, err := client.SubmitPropertyBatchSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "SubmitPropertyBatch", resp, "Failure sending request") return } result, err = client.SubmitPropertyBatchResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "SubmitPropertyBatch", resp, "Failure responding to request") return } return } // SubmitPropertyBatchPreparer prepares the SubmitPropertyBatch request. func (client BaseClient) SubmitPropertyBatchPreparer(ctx context.Context, nameID string, propertyBatchDescriptionList PropertyBatchDescriptionList, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "nameId": nameID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Names/{nameId}/$/GetProperties/$/SubmitBatch", pathParameters), autorest.WithJSON(propertyBatchDescriptionList), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // SubmitPropertyBatchSender sends the SubmitPropertyBatch request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) SubmitPropertyBatchSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // SubmitPropertyBatchResponder handles the response to the SubmitPropertyBatch request. The method always // closes the http.Response Body. func (client BaseClient) SubmitPropertyBatchResponder(resp *http.Response) (result PropertyBatchInfoModel, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusConflict), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // SuspendApplicationBackup the application which is configured to take periodic backups, is suspended for taking // further backups till it is resumed again. This operation applies to the entire application's hierarchy. It means all // the services and partitions under this application are now suspended for backup. // Parameters: // applicationID - the identity of the application. This is typically the full name of the application without // the 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the application name is "fabric:/myapp/app1", the application identity would be "myapp~app1" // in 6.0+ and "myapp/app1" in previous versions. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) SuspendApplicationBackup(ctx context.Context, applicationID string, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.SuspendApplicationBackup") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "SuspendApplicationBackup", err.Error()) } req, err := client.SuspendApplicationBackupPreparer(ctx, applicationID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "SuspendApplicationBackup", nil, "Failure preparing request") return } resp, err := client.SuspendApplicationBackupSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "SuspendApplicationBackup", resp, "Failure sending request") return } result, err = client.SuspendApplicationBackupResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "SuspendApplicationBackup", resp, "Failure responding to request") return } return } // SuspendApplicationBackupPreparer prepares the SuspendApplicationBackup request. func (client BaseClient) SuspendApplicationBackupPreparer(ctx context.Context, applicationID string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationId": applicationID, } const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Applications/{applicationId}/$/SuspendBackup", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // SuspendApplicationBackupSender sends the SuspendApplicationBackup request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) SuspendApplicationBackupSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // SuspendApplicationBackupResponder handles the response to the SuspendApplicationBackup request. The method always // closes the http.Response Body. func (client BaseClient) SuspendApplicationBackupResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), autorest.ByClosing()) result.Response = resp return } // SuspendPartitionBackup the partition which is configured to take periodic backups, is suspended for taking further // backups till it is resumed again. // Parameters: // partitionID - the identity of the partition. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) SuspendPartitionBackup(ctx context.Context, partitionID uuid.UUID, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.SuspendPartitionBackup") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "SuspendPartitionBackup", err.Error()) } req, err := client.SuspendPartitionBackupPreparer(ctx, partitionID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "SuspendPartitionBackup", nil, "Failure preparing request") return } resp, err := client.SuspendPartitionBackupSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "SuspendPartitionBackup", resp, "Failure sending request") return } result, err = client.SuspendPartitionBackupResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "SuspendPartitionBackup", resp, "Failure responding to request") return } return } // SuspendPartitionBackupPreparer prepares the SuspendPartitionBackup request. func (client BaseClient) SuspendPartitionBackupPreparer(ctx context.Context, partitionID uuid.UUID, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "partitionId": partitionID, } const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Partitions/{partitionId}/$/SuspendBackup", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // SuspendPartitionBackupSender sends the SuspendPartitionBackup request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) SuspendPartitionBackupSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // SuspendPartitionBackupResponder handles the response to the SuspendPartitionBackup request. The method always // closes the http.Response Body. func (client BaseClient) SuspendPartitionBackupResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), autorest.ByClosing()) result.Response = resp return } // SuspendServiceBackup the service which is configured to take periodic backups, is suspended for taking further // backups till it is resumed again. This operation applies to the entire service's hierarchy. It means all the // partitions under this service are now suspended for backup. // Parameters: // serviceID - the identity of the service. This is typically the full name of the service without the // 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the service name is "fabric:/myapp/app1/svc1", the service identity would be // "myapp~app1~svc1" in 6.0+ and "myapp/app1/svc1" in previous versions. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) SuspendServiceBackup(ctx context.Context, serviceID string, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.SuspendServiceBackup") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "SuspendServiceBackup", err.Error()) } req, err := client.SuspendServiceBackupPreparer(ctx, serviceID, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "SuspendServiceBackup", nil, "Failure preparing request") return } resp, err := client.SuspendServiceBackupSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "SuspendServiceBackup", resp, "Failure sending request") return } result, err = client.SuspendServiceBackupResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "SuspendServiceBackup", resp, "Failure responding to request") return } return } // SuspendServiceBackupPreparer prepares the SuspendServiceBackup request. func (client BaseClient) SuspendServiceBackupPreparer(ctx context.Context, serviceID string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "serviceId": serviceID, } const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Services/{serviceId}/$/SuspendBackup", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // SuspendServiceBackupSender sends the SuspendServiceBackup request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) SuspendServiceBackupSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // SuspendServiceBackupResponder handles the response to the SuspendServiceBackup request. The method always // closes the http.Response Body. func (client BaseClient) SuspendServiceBackupResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), autorest.ByClosing()) result.Response = resp return } // UnprovisionApplicationType removes or unregisters a Service Fabric application type from the cluster. This operation // can only be performed if all application instances of the application type has been deleted. Once the application // type is unregistered, no new application instances can be created for this particular application type. // Parameters: // applicationTypeName - the name of the application type. // unprovisionApplicationTypeDescriptionInfo - the relative path for the application package in the image store // specified during the prior copy operation. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) UnprovisionApplicationType(ctx context.Context, applicationTypeName string, unprovisionApplicationTypeDescriptionInfo UnprovisionApplicationTypeDescriptionInfo, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.UnprovisionApplicationType") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: unprovisionApplicationTypeDescriptionInfo, Constraints: []validation.Constraint{{Target: "unprovisionApplicationTypeDescriptionInfo.ApplicationTypeVersion", Name: validation.Null, Rule: true, Chain: nil}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "UnprovisionApplicationType", err.Error()) } req, err := client.UnprovisionApplicationTypePreparer(ctx, applicationTypeName, unprovisionApplicationTypeDescriptionInfo, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "UnprovisionApplicationType", nil, "Failure preparing request") return } resp, err := client.UnprovisionApplicationTypeSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "UnprovisionApplicationType", resp, "Failure sending request") return } result, err = client.UnprovisionApplicationTypeResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "UnprovisionApplicationType", resp, "Failure responding to request") return } return } // UnprovisionApplicationTypePreparer prepares the UnprovisionApplicationType request. func (client BaseClient) UnprovisionApplicationTypePreparer(ctx context.Context, applicationTypeName string, unprovisionApplicationTypeDescriptionInfo UnprovisionApplicationTypeDescriptionInfo, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationTypeName": autorest.Encode("path", applicationTypeName), } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/ApplicationTypes/{applicationTypeName}/$/Unprovision", pathParameters), autorest.WithJSON(unprovisionApplicationTypeDescriptionInfo), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // UnprovisionApplicationTypeSender sends the UnprovisionApplicationType request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) UnprovisionApplicationTypeSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // UnprovisionApplicationTypeResponder handles the response to the UnprovisionApplicationType request. The method always // closes the http.Response Body. func (client BaseClient) UnprovisionApplicationTypeResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK, http.StatusAccepted), autorest.ByClosing()) result.Response = resp return } // UnprovisionCluster unprovision the code or configuration packages of a Service Fabric cluster. It is supported to // unprovision code and configuration separately. // Parameters: // unprovisionFabricDescription - describes the parameters for unprovisioning a cluster. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) UnprovisionCluster(ctx context.Context, unprovisionFabricDescription UnprovisionFabricDescription, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.UnprovisionCluster") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "UnprovisionCluster", err.Error()) } req, err := client.UnprovisionClusterPreparer(ctx, unprovisionFabricDescription, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "UnprovisionCluster", nil, "Failure preparing request") return } resp, err := client.UnprovisionClusterSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "UnprovisionCluster", resp, "Failure sending request") return } result, err = client.UnprovisionClusterResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "UnprovisionCluster", resp, "Failure responding to request") return } return } // UnprovisionClusterPreparer prepares the UnprovisionCluster request. func (client BaseClient) UnprovisionClusterPreparer(ctx context.Context, unprovisionFabricDescription UnprovisionFabricDescription, timeout *int64) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/$/Unprovision"), autorest.WithJSON(unprovisionFabricDescription), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // UnprovisionClusterSender sends the UnprovisionCluster request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) UnprovisionClusterSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // UnprovisionClusterResponder handles the response to the UnprovisionCluster request. The method always // closes the http.Response Body. func (client BaseClient) UnprovisionClusterResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // UpdateApplicationUpgrade updates the parameters of an ongoing application upgrade from the ones specified at the // time of starting the application upgrade. This may be required to mitigate stuck application upgrades due to // incorrect parameters or issues in the application to make progress. // Parameters: // applicationID - the identity of the application. This is typically the full name of the application without // the 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the application name is "fabric:/myapp/app1", the application identity would be "myapp~app1" // in 6.0+ and "myapp/app1" in previous versions. // applicationUpgradeUpdateDescription - parameters for updating an existing application upgrade. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) UpdateApplicationUpgrade(ctx context.Context, applicationID string, applicationUpgradeUpdateDescription ApplicationUpgradeUpdateDescription, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.UpdateApplicationUpgrade") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: applicationUpgradeUpdateDescription, Constraints: []validation.Constraint{{Target: "applicationUpgradeUpdateDescription.Name", Name: validation.Null, Rule: true, Chain: nil}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "UpdateApplicationUpgrade", err.Error()) } req, err := client.UpdateApplicationUpgradePreparer(ctx, applicationID, applicationUpgradeUpdateDescription, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "UpdateApplicationUpgrade", nil, "Failure preparing request") return } resp, err := client.UpdateApplicationUpgradeSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "UpdateApplicationUpgrade", resp, "Failure sending request") return } result, err = client.UpdateApplicationUpgradeResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "UpdateApplicationUpgrade", resp, "Failure responding to request") return } return } // UpdateApplicationUpgradePreparer prepares the UpdateApplicationUpgrade request. func (client BaseClient) UpdateApplicationUpgradePreparer(ctx context.Context, applicationID string, applicationUpgradeUpdateDescription ApplicationUpgradeUpdateDescription, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "applicationId": applicationID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Applications/{applicationId}/$/UpdateUpgrade", pathParameters), autorest.WithJSON(applicationUpgradeUpdateDescription), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // UpdateApplicationUpgradeSender sends the UpdateApplicationUpgrade request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) UpdateApplicationUpgradeSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // UpdateApplicationUpgradeResponder handles the response to the UpdateApplicationUpgrade request. The method always // closes the http.Response Body. func (client BaseClient) UpdateApplicationUpgradeResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // UpdateBackupPolicy updates the backup policy identified by {backupPolicyName} // Parameters: // backupPolicyDescription - describes the backup policy. // backupPolicyName - the name of the backup policy. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) UpdateBackupPolicy(ctx context.Context, backupPolicyDescription BackupPolicyDescription, backupPolicyName string, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.UpdateBackupPolicy") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: backupPolicyDescription, Constraints: []validation.Constraint{{Target: "backupPolicyDescription.Name", Name: validation.Null, Rule: true, Chain: nil}, {Target: "backupPolicyDescription.AutoRestoreOnDataLoss", Name: validation.Null, Rule: true, Chain: nil}, {Target: "backupPolicyDescription.MaxIncrementalBackups", Name: validation.Null, Rule: true, Chain: []validation.Constraint{{Target: "backupPolicyDescription.MaxIncrementalBackups", Name: validation.InclusiveMaximum, Rule: int64(255), Chain: nil}, {Target: "backupPolicyDescription.MaxIncrementalBackups", Name: validation.InclusiveMinimum, Rule: int64(0), Chain: nil}, }}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "UpdateBackupPolicy", err.Error()) } req, err := client.UpdateBackupPolicyPreparer(ctx, backupPolicyDescription, backupPolicyName, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "UpdateBackupPolicy", nil, "Failure preparing request") return } resp, err := client.UpdateBackupPolicySender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "UpdateBackupPolicy", resp, "Failure sending request") return } result, err = client.UpdateBackupPolicyResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "UpdateBackupPolicy", resp, "Failure responding to request") return } return } // UpdateBackupPolicyPreparer prepares the UpdateBackupPolicy request. func (client BaseClient) UpdateBackupPolicyPreparer(ctx context.Context, backupPolicyDescription BackupPolicyDescription, backupPolicyName string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "backupPolicyName": autorest.Encode("path", backupPolicyName), } const APIVersion = "6.2-preview" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/BackupRestore/BackupPolicies/{backupPolicyName}/$/Update", pathParameters), autorest.WithJSON(backupPolicyDescription), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // UpdateBackupPolicySender sends the UpdateBackupPolicy request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) UpdateBackupPolicySender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // UpdateBackupPolicyResponder handles the response to the UpdateBackupPolicy request. The method always // closes the http.Response Body. func (client BaseClient) UpdateBackupPolicyResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // UpdateClusterUpgrade update the upgrade parameters used during a Service Fabric cluster upgrade. // Parameters: // updateClusterUpgradeDescription - parameters for updating a cluster upgrade. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) UpdateClusterUpgrade(ctx context.Context, updateClusterUpgradeDescription UpdateClusterUpgradeDescription, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.UpdateClusterUpgrade") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: updateClusterUpgradeDescription, Constraints: []validation.Constraint{{Target: "updateClusterUpgradeDescription.ClusterUpgradeHealthPolicy", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "updateClusterUpgradeDescription.ClusterUpgradeHealthPolicy.MaxPercentDeltaUnhealthyNodes", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "updateClusterUpgradeDescription.ClusterUpgradeHealthPolicy.MaxPercentDeltaUnhealthyNodes", Name: validation.InclusiveMaximum, Rule: int64(100), Chain: nil}, {Target: "updateClusterUpgradeDescription.ClusterUpgradeHealthPolicy.MaxPercentDeltaUnhealthyNodes", Name: validation.InclusiveMinimum, Rule: int64(0), Chain: nil}, }}, {Target: "updateClusterUpgradeDescription.ClusterUpgradeHealthPolicy.MaxPercentUpgradeDomainDeltaUnhealthyNodes", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "updateClusterUpgradeDescription.ClusterUpgradeHealthPolicy.MaxPercentUpgradeDomainDeltaUnhealthyNodes", Name: validation.InclusiveMaximum, Rule: int64(100), Chain: nil}, {Target: "updateClusterUpgradeDescription.ClusterUpgradeHealthPolicy.MaxPercentUpgradeDomainDeltaUnhealthyNodes", Name: validation.InclusiveMinimum, Rule: int64(0), Chain: nil}, }}, }}}}, {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "UpdateClusterUpgrade", err.Error()) } req, err := client.UpdateClusterUpgradePreparer(ctx, updateClusterUpgradeDescription, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "UpdateClusterUpgrade", nil, "Failure preparing request") return } resp, err := client.UpdateClusterUpgradeSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "UpdateClusterUpgrade", resp, "Failure sending request") return } result, err = client.UpdateClusterUpgradeResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "UpdateClusterUpgrade", resp, "Failure responding to request") return } return } // UpdateClusterUpgradePreparer prepares the UpdateClusterUpgrade request. func (client BaseClient) UpdateClusterUpgradePreparer(ctx context.Context, updateClusterUpgradeDescription UpdateClusterUpgradeDescription, timeout *int64) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/$/UpdateUpgrade"), autorest.WithJSON(updateClusterUpgradeDescription), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // UpdateClusterUpgradeSender sends the UpdateClusterUpgrade request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) UpdateClusterUpgradeSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // UpdateClusterUpgradeResponder handles the response to the UpdateClusterUpgrade request. The method always // closes the http.Response Body. func (client BaseClient) UpdateClusterUpgradeResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // UpdateRepairExecutionState this API supports the Service Fabric platform; it is not meant to be used directly from // your code. // Parameters: // repairTask - describes the repair task to be created or updated. func (client BaseClient) UpdateRepairExecutionState(ctx context.Context, repairTask RepairTask) (result RepairTaskUpdateInfo, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.UpdateRepairExecutionState") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: repairTask, Constraints: []validation.Constraint{{Target: "repairTask.TaskID", Name: validation.Null, Rule: true, Chain: nil}, {Target: "repairTask.Action", Name: validation.Null, Rule: true, Chain: nil}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "UpdateRepairExecutionState", err.Error()) } req, err := client.UpdateRepairExecutionStatePreparer(ctx, repairTask) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "UpdateRepairExecutionState", nil, "Failure preparing request") return } resp, err := client.UpdateRepairExecutionStateSender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "UpdateRepairExecutionState", resp, "Failure sending request") return } result, err = client.UpdateRepairExecutionStateResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "UpdateRepairExecutionState", resp, "Failure responding to request") return } return } // UpdateRepairExecutionStatePreparer prepares the UpdateRepairExecutionState request. func (client BaseClient) UpdateRepairExecutionStatePreparer(ctx context.Context, repairTask RepairTask) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/$/UpdateRepairExecutionState"), autorest.WithJSON(repairTask), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // UpdateRepairExecutionStateSender sends the UpdateRepairExecutionState request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) UpdateRepairExecutionStateSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // UpdateRepairExecutionStateResponder handles the response to the UpdateRepairExecutionState request. The method always // closes the http.Response Body. func (client BaseClient) UpdateRepairExecutionStateResponder(resp *http.Response) (result RepairTaskUpdateInfo, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // UpdateRepairTaskHealthPolicy this API supports the Service Fabric platform; it is not meant to be used directly from // your code. // Parameters: // repairTaskUpdateHealthPolicyDescription - describes the repair task healthy policy to be updated. func (client BaseClient) UpdateRepairTaskHealthPolicy(ctx context.Context, repairTaskUpdateHealthPolicyDescription RepairTaskUpdateHealthPolicyDescription) (result RepairTaskUpdateInfo, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.UpdateRepairTaskHealthPolicy") defer func() { sc := -1 if result.Response.Response != nil { sc = result.Response.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: repairTaskUpdateHealthPolicyDescription, Constraints: []validation.Constraint{{Target: "repairTaskUpdateHealthPolicyDescription.TaskID", Name: validation.Null, Rule: true, Chain: nil}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "UpdateRepairTaskHealthPolicy", err.Error()) } req, err := client.UpdateRepairTaskHealthPolicyPreparer(ctx, repairTaskUpdateHealthPolicyDescription) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "UpdateRepairTaskHealthPolicy", nil, "Failure preparing request") return } resp, err := client.UpdateRepairTaskHealthPolicySender(req) if err != nil { result.Response = autorest.Response{Response: resp} err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "UpdateRepairTaskHealthPolicy", resp, "Failure sending request") return } result, err = client.UpdateRepairTaskHealthPolicyResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "UpdateRepairTaskHealthPolicy", resp, "Failure responding to request") return } return } // UpdateRepairTaskHealthPolicyPreparer prepares the UpdateRepairTaskHealthPolicy request. func (client BaseClient) UpdateRepairTaskHealthPolicyPreparer(ctx context.Context, repairTaskUpdateHealthPolicyDescription RepairTaskUpdateHealthPolicyDescription) (*http.Request, error) { const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPath("/$/UpdateRepairTaskHealthPolicy"), autorest.WithJSON(repairTaskUpdateHealthPolicyDescription), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // UpdateRepairTaskHealthPolicySender sends the UpdateRepairTaskHealthPolicy request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) UpdateRepairTaskHealthPolicySender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // UpdateRepairTaskHealthPolicyResponder handles the response to the UpdateRepairTaskHealthPolicy request. The method always // closes the http.Response Body. func (client BaseClient) UpdateRepairTaskHealthPolicyResponder(resp *http.Response) (result RepairTaskUpdateInfo, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByUnmarshallingJSON(&result), autorest.ByClosing()) result.Response = autorest.Response{Response: resp} return } // UpdateService this API allows updating properties of a running Service Fabric service. The set of properties that // can be updated are a subset of the properties that were specified at the time of creating the service. The current // set of properties can be obtained using `GetServiceDescription` API. Please note that updating the properties of a // running service is different than upgrading your application using `StartApplicationUpgrade` API. The upgrade is a // long running background operation that involves moving the application from one version to another, one upgrade // domain at a time, whereas update applies the new properties immediately to the service. // Parameters: // serviceID - the identity of the service. This is typically the full name of the service without the // 'fabric:' URI scheme. // Starting from version 6.0, hierarchical names are delimited with the "~" character. // For example, if the service name is "fabric:/myapp/app1/svc1", the service identity would be // "myapp~app1~svc1" in 6.0+ and "myapp/app1/svc1" in previous versions. // serviceUpdateDescription - the information necessary to update a service. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) UpdateService(ctx context.Context, serviceID string, serviceUpdateDescription BasicServiceUpdateDescription, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.UpdateService") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "UpdateService", err.Error()) } req, err := client.UpdateServicePreparer(ctx, serviceID, serviceUpdateDescription, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "UpdateService", nil, "Failure preparing request") return } resp, err := client.UpdateServiceSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "UpdateService", resp, "Failure sending request") return } result, err = client.UpdateServiceResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "UpdateService", resp, "Failure responding to request") return } return } // UpdateServicePreparer prepares the UpdateService request. func (client BaseClient) UpdateServicePreparer(ctx context.Context, serviceID string, serviceUpdateDescription BasicServiceUpdateDescription, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "serviceId": serviceID, } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsContentType("application/json; charset=utf-8"), autorest.AsPost(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/Services/{serviceId}/$/Update", pathParameters), autorest.WithJSON(serviceUpdateDescription), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // UpdateServiceSender sends the UpdateService request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) UpdateServiceSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // UpdateServiceResponder handles the response to the UpdateService request. The method always // closes the http.Response Body. func (client BaseClient) UpdateServiceResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // UploadFile uploads contents of the file to the image store. Use this API if the file is small enough to upload again // if the connection fails. The file's data needs to be added to the request body. The contents will be uploaded to the // specified path. Image store service uses a mark file to indicate the availability of the folder. The mark file is an // empty file named "_.dir". The mark file is generated by the image store service when all files in a folder are // uploaded. When using File-by-File approach to upload application package in REST, the image store service isn't // aware of the file hierarchy of the application package; you need to create a mark file per folder and upload it // last, to let the image store service know that the folder is complete. // Parameters: // contentPath - relative path to file or folder in the image store from its root. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) UploadFile(ctx context.Context, contentPath string, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.UploadFile") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "UploadFile", err.Error()) } req, err := client.UploadFilePreparer(ctx, contentPath, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "UploadFile", nil, "Failure preparing request") return } resp, err := client.UploadFileSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "UploadFile", resp, "Failure sending request") return } result, err = client.UploadFileResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "UploadFile", resp, "Failure responding to request") return } return } // UploadFilePreparer prepares the UploadFile request. func (client BaseClient) UploadFilePreparer(ctx context.Context, contentPath string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "contentPath": autorest.Encode("path", contentPath), } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsPut(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/ImageStore/{contentPath}", pathParameters), autorest.WithQueryParameters(queryParameters)) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // UploadFileSender sends the UploadFile request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) UploadFileSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // UploadFileResponder handles the response to the UploadFile request. The method always // closes the http.Response Body. func (client BaseClient) UploadFileResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return } // UploadFileChunk uploads a file chunk to the image store with the specified upload session ID and image store // relative path. This API allows user to resume the file upload operation. user doesn't have to restart the file // upload from scratch whenever there is a network interruption. Use this option if the file size is large. // // To perform a resumable file upload, user need to break the file into multiple chunks and upload these chunks to the // image store one-by-one. Chunks don't have to be uploaded in order. If the file represented by the image store // relative path already exists, it will be overwritten when the upload session commits. // Parameters: // contentPath - relative path to file or folder in the image store from its root. // sessionID - a GUID generated by the user for a file uploading. It identifies an image store upload session // which keeps track of all file chunks until it is committed. // contentRange - when uploading file chunks to the image store, the Content-Range header field need to be // configured and sent with a request. The format should looks like "bytes // {First-Byte-Position}-{Last-Byte-Position}/{File-Length}". For example, Content-Range:bytes 300-5000/20000 // indicates that user is sending bytes 300 through 5,000 and the total file length is 20,000 bytes. // timeout - the server timeout for performing the operation in seconds. This timeout specifies the time // duration that the client is willing to wait for the requested operation to complete. The default value for // this parameter is 60 seconds. func (client BaseClient) UploadFileChunk(ctx context.Context, contentPath string, sessionID uuid.UUID, contentRange string, timeout *int64) (result autorest.Response, err error) { if tracing.IsEnabled() { ctx = tracing.StartSpan(ctx, fqdn+"/BaseClient.UploadFileChunk") defer func() { sc := -1 if result.Response != nil { sc = result.Response.StatusCode } tracing.EndSpan(ctx, sc, err) }() } if err := validation.Validate([]validation.Validation{ {TargetValue: timeout, Constraints: []validation.Constraint{{Target: "timeout", Name: validation.Null, Rule: false, Chain: []validation.Constraint{{Target: "timeout", Name: validation.InclusiveMaximum, Rule: int64(4294967295), Chain: nil}, {Target: "timeout", Name: validation.InclusiveMinimum, Rule: int64(1), Chain: nil}, }}}}}); err != nil { return result, validation.NewError("servicefabric.BaseClient", "UploadFileChunk", err.Error()) } req, err := client.UploadFileChunkPreparer(ctx, contentPath, sessionID, contentRange, timeout) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "UploadFileChunk", nil, "Failure preparing request") return } resp, err := client.UploadFileChunkSender(req) if err != nil { result.Response = resp err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "UploadFileChunk", resp, "Failure sending request") return } result, err = client.UploadFileChunkResponder(resp) if err != nil { err = autorest.NewErrorWithError(err, "servicefabric.BaseClient", "UploadFileChunk", resp, "Failure responding to request") return } return } // UploadFileChunkPreparer prepares the UploadFileChunk request. func (client BaseClient) UploadFileChunkPreparer(ctx context.Context, contentPath string, sessionID uuid.UUID, contentRange string, timeout *int64) (*http.Request, error) { pathParameters := map[string]interface{}{ "contentPath": autorest.Encode("path", contentPath), } const APIVersion = "6.0" queryParameters := map[string]interface{}{ "api-version": APIVersion, "session-id": autorest.Encode("query", sessionID), } if timeout != nil { queryParameters["timeout"] = autorest.Encode("query", *timeout) } else { queryParameters["timeout"] = autorest.Encode("query", 60) } preparer := autorest.CreatePreparer( autorest.AsPut(), autorest.WithBaseURL(client.BaseURI), autorest.WithPathParameters("/ImageStore/{contentPath}/$/UploadChunk", pathParameters), autorest.WithQueryParameters(queryParameters), autorest.WithHeader("Content-Range", autorest.String(contentRange))) return preparer.Prepare((&http.Request{}).WithContext(ctx)) } // UploadFileChunkSender sends the UploadFileChunk request. The method will close the // http.Response Body if it receives an error. func (client BaseClient) UploadFileChunkSender(req *http.Request) (*http.Response, error) { return client.Send(req, autorest.DoRetryForStatusCodes(client.RetryAttempts, client.RetryDuration, autorest.StatusCodesForRetry...)) } // UploadFileChunkResponder handles the response to the UploadFileChunk request. The method always // closes the http.Response Body. func (client BaseClient) UploadFileChunkResponder(resp *http.Response) (result autorest.Response, err error) { err = autorest.Respond( resp, azure.WithErrorUnlessStatusCode(http.StatusOK), autorest.ByClosing()) result.Response = resp return }