mirror of
https://github.com/octoleo/restic.git
synced 2024-11-15 17:47:21 +00:00
928 lines
43 KiB
Go
928 lines
43 KiB
Go
|
package servicebus
|
||
|
|
||
|
// Copyright (c) Microsoft and contributors. All rights reserved.
|
||
|
//
|
||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
// you may not use this file except in compliance with the License.
|
||
|
// You may obtain a copy of the License at
|
||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||
|
//
|
||
|
// Unless required by applicable law or agreed to in writing, software
|
||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
//
|
||
|
// See the License for the specific language governing permissions and
|
||
|
// limitations under the License.
|
||
|
//
|
||
|
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0
|
||
|
// Changes may cause incorrect behavior and will be lost if the code is
|
||
|
// regenerated.
|
||
|
|
||
|
import (
|
||
|
"github.com/Azure/go-autorest/autorest"
|
||
|
"github.com/Azure/go-autorest/autorest/azure"
|
||
|
"github.com/Azure/go-autorest/autorest/validation"
|
||
|
"net/http"
|
||
|
)
|
||
|
|
||
|
// TopicsClient is the azure Service Bus client
|
||
|
type TopicsClient struct {
|
||
|
ManagementClient
|
||
|
}
|
||
|
|
||
|
// NewTopicsClient creates an instance of the TopicsClient client.
|
||
|
func NewTopicsClient(subscriptionID string) TopicsClient {
|
||
|
return NewTopicsClientWithBaseURI(DefaultBaseURI, subscriptionID)
|
||
|
}
|
||
|
|
||
|
// NewTopicsClientWithBaseURI creates an instance of the TopicsClient client.
|
||
|
func NewTopicsClientWithBaseURI(baseURI string, subscriptionID string) TopicsClient {
|
||
|
return TopicsClient{NewWithBaseURI(baseURI, subscriptionID)}
|
||
|
}
|
||
|
|
||
|
// CreateOrUpdate creates a topic in the specified namespace.
|
||
|
//
|
||
|
// resourceGroupName is name of the Resource group within the Azure
|
||
|
// subscription. namespaceName is the namespace name topicName is the topic
|
||
|
// name. parameters is parameters supplied to create a topic resource.
|
||
|
func (client TopicsClient) CreateOrUpdate(resourceGroupName string, namespaceName string, topicName string, parameters TopicCreateOrUpdateParameters) (result TopicResource, err error) {
|
||
|
if err := validation.Validate([]validation.Validation{
|
||
|
{TargetValue: resourceGroupName,
|
||
|
Constraints: []validation.Constraint{{Target: "resourceGroupName", Name: validation.MaxLength, Rule: 90, Chain: nil},
|
||
|
{Target: "resourceGroupName", Name: validation.MinLength, Rule: 1, Chain: nil}}},
|
||
|
{TargetValue: namespaceName,
|
||
|
Constraints: []validation.Constraint{{Target: "namespaceName", Name: validation.MaxLength, Rule: 50, Chain: nil},
|
||
|
{Target: "namespaceName", Name: validation.MinLength, Rule: 6, Chain: nil}}},
|
||
|
{TargetValue: topicName,
|
||
|
Constraints: []validation.Constraint{{Target: "topicName", Name: validation.MaxLength, Rule: 50, Chain: nil},
|
||
|
{Target: "topicName", Name: validation.MinLength, Rule: 1, Chain: nil}}},
|
||
|
{TargetValue: parameters,
|
||
|
Constraints: []validation.Constraint{{Target: "parameters.Location", Name: validation.Null, Rule: true, Chain: nil}}}}); err != nil {
|
||
|
return result, validation.NewErrorWithValidationError(err, "servicebus.TopicsClient", "CreateOrUpdate")
|
||
|
}
|
||
|
|
||
|
req, err := client.CreateOrUpdatePreparer(resourceGroupName, namespaceName, topicName, parameters)
|
||
|
if err != nil {
|
||
|
err = autorest.NewErrorWithError(err, "servicebus.TopicsClient", "CreateOrUpdate", nil, "Failure preparing request")
|
||
|
return
|
||
|
}
|
||
|
|
||
|
resp, err := client.CreateOrUpdateSender(req)
|
||
|
if err != nil {
|
||
|
result.Response = autorest.Response{Response: resp}
|
||
|
err = autorest.NewErrorWithError(err, "servicebus.TopicsClient", "CreateOrUpdate", resp, "Failure sending request")
|
||
|
return
|
||
|
}
|
||
|
|
||
|
result, err = client.CreateOrUpdateResponder(resp)
|
||
|
if err != nil {
|
||
|
err = autorest.NewErrorWithError(err, "servicebus.TopicsClient", "CreateOrUpdate", resp, "Failure responding to request")
|
||
|
}
|
||
|
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// CreateOrUpdatePreparer prepares the CreateOrUpdate request.
|
||
|
func (client TopicsClient) CreateOrUpdatePreparer(resourceGroupName string, namespaceName string, topicName string, parameters TopicCreateOrUpdateParameters) (*http.Request, error) {
|
||
|
pathParameters := map[string]interface{}{
|
||
|
"namespaceName": autorest.Encode("path", namespaceName),
|
||
|
"resourceGroupName": autorest.Encode("path", resourceGroupName),
|
||
|
"subscriptionId": autorest.Encode("path", client.SubscriptionID),
|
||
|
"topicName": autorest.Encode("path", topicName),
|
||
|
}
|
||
|
|
||
|
const APIVersion = "2015-08-01"
|
||
|
queryParameters := map[string]interface{}{
|
||
|
"api-version": APIVersion,
|
||
|
}
|
||
|
|
||
|
preparer := autorest.CreatePreparer(
|
||
|
autorest.AsJSON(),
|
||
|
autorest.AsPut(),
|
||
|
autorest.WithBaseURL(client.BaseURI),
|
||
|
autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/topics/{topicName}", pathParameters),
|
||
|
autorest.WithJSON(parameters),
|
||
|
autorest.WithQueryParameters(queryParameters))
|
||
|
return preparer.Prepare(&http.Request{})
|
||
|
}
|
||
|
|
||
|
// CreateOrUpdateSender sends the CreateOrUpdate request. The method will close the
|
||
|
// http.Response Body if it receives an error.
|
||
|
func (client TopicsClient) CreateOrUpdateSender(req *http.Request) (*http.Response, error) {
|
||
|
return autorest.SendWithSender(client, req)
|
||
|
}
|
||
|
|
||
|
// CreateOrUpdateResponder handles the response to the CreateOrUpdate request. The method always
|
||
|
// closes the http.Response Body.
|
||
|
func (client TopicsClient) CreateOrUpdateResponder(resp *http.Response) (result TopicResource, err error) {
|
||
|
err = autorest.Respond(
|
||
|
resp,
|
||
|
client.ByInspecting(),
|
||
|
azure.WithErrorUnlessStatusCode(http.StatusOK),
|
||
|
autorest.ByUnmarshallingJSON(&result),
|
||
|
autorest.ByClosing())
|
||
|
result.Response = autorest.Response{Response: resp}
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// CreateOrUpdateAuthorizationRule creates an authorizatio rule for the
|
||
|
// specified topic.
|
||
|
//
|
||
|
// resourceGroupName is name of the Resource group within the Azure
|
||
|
// subscription. namespaceName is the namespace name topicName is the topic
|
||
|
// name. authorizationRuleName is the authorizationrule name. parameters is the
|
||
|
// shared access authorization rule.
|
||
|
func (client TopicsClient) CreateOrUpdateAuthorizationRule(resourceGroupName string, namespaceName string, topicName string, authorizationRuleName string, parameters SharedAccessAuthorizationRuleCreateOrUpdateParameters) (result SharedAccessAuthorizationRuleResource, err error) {
|
||
|
if err := validation.Validate([]validation.Validation{
|
||
|
{TargetValue: resourceGroupName,
|
||
|
Constraints: []validation.Constraint{{Target: "resourceGroupName", Name: validation.MaxLength, Rule: 90, Chain: nil},
|
||
|
{Target: "resourceGroupName", Name: validation.MinLength, Rule: 1, Chain: nil}}},
|
||
|
{TargetValue: namespaceName,
|
||
|
Constraints: []validation.Constraint{{Target: "namespaceName", Name: validation.MaxLength, Rule: 50, Chain: nil},
|
||
|
{Target: "namespaceName", Name: validation.MinLength, Rule: 6, Chain: nil}}},
|
||
|
{TargetValue: topicName,
|
||
|
Constraints: []validation.Constraint{{Target: "topicName", Name: validation.MaxLength, Rule: 50, Chain: nil},
|
||
|
{Target: "topicName", Name: validation.MinLength, Rule: 1, Chain: nil}}},
|
||
|
{TargetValue: authorizationRuleName,
|
||
|
Constraints: []validation.Constraint{{Target: "authorizationRuleName", Name: validation.MaxLength, Rule: 50, Chain: nil},
|
||
|
{Target: "authorizationRuleName", Name: validation.MinLength, Rule: 1, Chain: nil}}},
|
||
|
{TargetValue: parameters,
|
||
|
Constraints: []validation.Constraint{{Target: "parameters.SharedAccessAuthorizationRuleProperties", Name: validation.Null, Rule: false,
|
||
|
Chain: []validation.Constraint{{Target: "parameters.SharedAccessAuthorizationRuleProperties.Rights", Name: validation.Null, Rule: true, Chain: nil}}}}}}); err != nil {
|
||
|
return result, validation.NewErrorWithValidationError(err, "servicebus.TopicsClient", "CreateOrUpdateAuthorizationRule")
|
||
|
}
|
||
|
|
||
|
req, err := client.CreateOrUpdateAuthorizationRulePreparer(resourceGroupName, namespaceName, topicName, authorizationRuleName, parameters)
|
||
|
if err != nil {
|
||
|
err = autorest.NewErrorWithError(err, "servicebus.TopicsClient", "CreateOrUpdateAuthorizationRule", nil, "Failure preparing request")
|
||
|
return
|
||
|
}
|
||
|
|
||
|
resp, err := client.CreateOrUpdateAuthorizationRuleSender(req)
|
||
|
if err != nil {
|
||
|
result.Response = autorest.Response{Response: resp}
|
||
|
err = autorest.NewErrorWithError(err, "servicebus.TopicsClient", "CreateOrUpdateAuthorizationRule", resp, "Failure sending request")
|
||
|
return
|
||
|
}
|
||
|
|
||
|
result, err = client.CreateOrUpdateAuthorizationRuleResponder(resp)
|
||
|
if err != nil {
|
||
|
err = autorest.NewErrorWithError(err, "servicebus.TopicsClient", "CreateOrUpdateAuthorizationRule", resp, "Failure responding to request")
|
||
|
}
|
||
|
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// CreateOrUpdateAuthorizationRulePreparer prepares the CreateOrUpdateAuthorizationRule request.
|
||
|
func (client TopicsClient) CreateOrUpdateAuthorizationRulePreparer(resourceGroupName string, namespaceName string, topicName string, authorizationRuleName string, parameters SharedAccessAuthorizationRuleCreateOrUpdateParameters) (*http.Request, error) {
|
||
|
pathParameters := map[string]interface{}{
|
||
|
"authorizationRuleName": autorest.Encode("path", authorizationRuleName),
|
||
|
"namespaceName": autorest.Encode("path", namespaceName),
|
||
|
"resourceGroupName": autorest.Encode("path", resourceGroupName),
|
||
|
"subscriptionId": autorest.Encode("path", client.SubscriptionID),
|
||
|
"topicName": autorest.Encode("path", topicName),
|
||
|
}
|
||
|
|
||
|
const APIVersion = "2015-08-01"
|
||
|
queryParameters := map[string]interface{}{
|
||
|
"api-version": APIVersion,
|
||
|
}
|
||
|
|
||
|
preparer := autorest.CreatePreparer(
|
||
|
autorest.AsJSON(),
|
||
|
autorest.AsPut(),
|
||
|
autorest.WithBaseURL(client.BaseURI),
|
||
|
autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/topics/{topicName}/authorizationRules/{authorizationRuleName}", pathParameters),
|
||
|
autorest.WithJSON(parameters),
|
||
|
autorest.WithQueryParameters(queryParameters))
|
||
|
return preparer.Prepare(&http.Request{})
|
||
|
}
|
||
|
|
||
|
// CreateOrUpdateAuthorizationRuleSender sends the CreateOrUpdateAuthorizationRule request. The method will close the
|
||
|
// http.Response Body if it receives an error.
|
||
|
func (client TopicsClient) CreateOrUpdateAuthorizationRuleSender(req *http.Request) (*http.Response, error) {
|
||
|
return autorest.SendWithSender(client, req)
|
||
|
}
|
||
|
|
||
|
// CreateOrUpdateAuthorizationRuleResponder handles the response to the CreateOrUpdateAuthorizationRule request. The method always
|
||
|
// closes the http.Response Body.
|
||
|
func (client TopicsClient) CreateOrUpdateAuthorizationRuleResponder(resp *http.Response) (result SharedAccessAuthorizationRuleResource, err error) {
|
||
|
err = autorest.Respond(
|
||
|
resp,
|
||
|
client.ByInspecting(),
|
||
|
azure.WithErrorUnlessStatusCode(http.StatusOK),
|
||
|
autorest.ByUnmarshallingJSON(&result),
|
||
|
autorest.ByClosing())
|
||
|
result.Response = autorest.Response{Response: resp}
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// Delete deletes a topic from the specified namespace and resource group.
|
||
|
//
|
||
|
// resourceGroupName is name of the Resource group within the Azure
|
||
|
// subscription. namespaceName is the namespace name topicName is the topic
|
||
|
// name.
|
||
|
func (client TopicsClient) Delete(resourceGroupName string, namespaceName string, topicName string) (result autorest.Response, err error) {
|
||
|
if err := validation.Validate([]validation.Validation{
|
||
|
{TargetValue: resourceGroupName,
|
||
|
Constraints: []validation.Constraint{{Target: "resourceGroupName", Name: validation.MaxLength, Rule: 90, Chain: nil},
|
||
|
{Target: "resourceGroupName", Name: validation.MinLength, Rule: 1, Chain: nil}}},
|
||
|
{TargetValue: namespaceName,
|
||
|
Constraints: []validation.Constraint{{Target: "namespaceName", Name: validation.MaxLength, Rule: 50, Chain: nil},
|
||
|
{Target: "namespaceName", Name: validation.MinLength, Rule: 6, Chain: nil}}},
|
||
|
{TargetValue: topicName,
|
||
|
Constraints: []validation.Constraint{{Target: "topicName", Name: validation.MaxLength, Rule: 50, Chain: nil},
|
||
|
{Target: "topicName", Name: validation.MinLength, Rule: 1, Chain: nil}}}}); err != nil {
|
||
|
return result, validation.NewErrorWithValidationError(err, "servicebus.TopicsClient", "Delete")
|
||
|
}
|
||
|
|
||
|
req, err := client.DeletePreparer(resourceGroupName, namespaceName, topicName)
|
||
|
if err != nil {
|
||
|
err = autorest.NewErrorWithError(err, "servicebus.TopicsClient", "Delete", nil, "Failure preparing request")
|
||
|
return
|
||
|
}
|
||
|
|
||
|
resp, err := client.DeleteSender(req)
|
||
|
if err != nil {
|
||
|
result.Response = resp
|
||
|
err = autorest.NewErrorWithError(err, "servicebus.TopicsClient", "Delete", resp, "Failure sending request")
|
||
|
return
|
||
|
}
|
||
|
|
||
|
result, err = client.DeleteResponder(resp)
|
||
|
if err != nil {
|
||
|
err = autorest.NewErrorWithError(err, "servicebus.TopicsClient", "Delete", resp, "Failure responding to request")
|
||
|
}
|
||
|
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// DeletePreparer prepares the Delete request.
|
||
|
func (client TopicsClient) DeletePreparer(resourceGroupName string, namespaceName string, topicName string) (*http.Request, error) {
|
||
|
pathParameters := map[string]interface{}{
|
||
|
"namespaceName": autorest.Encode("path", namespaceName),
|
||
|
"resourceGroupName": autorest.Encode("path", resourceGroupName),
|
||
|
"subscriptionId": autorest.Encode("path", client.SubscriptionID),
|
||
|
"topicName": autorest.Encode("path", topicName),
|
||
|
}
|
||
|
|
||
|
const APIVersion = "2015-08-01"
|
||
|
queryParameters := map[string]interface{}{
|
||
|
"api-version": APIVersion,
|
||
|
}
|
||
|
|
||
|
preparer := autorest.CreatePreparer(
|
||
|
autorest.AsDelete(),
|
||
|
autorest.WithBaseURL(client.BaseURI),
|
||
|
autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/topics/{topicName}", pathParameters),
|
||
|
autorest.WithQueryParameters(queryParameters))
|
||
|
return preparer.Prepare(&http.Request{})
|
||
|
}
|
||
|
|
||
|
// DeleteSender sends the Delete request. The method will close the
|
||
|
// http.Response Body if it receives an error.
|
||
|
func (client TopicsClient) DeleteSender(req *http.Request) (*http.Response, error) {
|
||
|
return autorest.SendWithSender(client, req)
|
||
|
}
|
||
|
|
||
|
// DeleteResponder handles the response to the Delete request. The method always
|
||
|
// closes the http.Response Body.
|
||
|
func (client TopicsClient) DeleteResponder(resp *http.Response) (result autorest.Response, err error) {
|
||
|
err = autorest.Respond(
|
||
|
resp,
|
||
|
client.ByInspecting(),
|
||
|
azure.WithErrorUnlessStatusCode(http.StatusNoContent, http.StatusOK),
|
||
|
autorest.ByClosing())
|
||
|
result.Response = resp
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// DeleteAuthorizationRule deletes a topic authorization rule.
|
||
|
//
|
||
|
// resourceGroupName is name of the Resource group within the Azure
|
||
|
// subscription. namespaceName is the namespace name topicName is the topic
|
||
|
// name. authorizationRuleName is the authorizationrule name.
|
||
|
func (client TopicsClient) DeleteAuthorizationRule(resourceGroupName string, namespaceName string, topicName string, authorizationRuleName string) (result autorest.Response, err error) {
|
||
|
if err := validation.Validate([]validation.Validation{
|
||
|
{TargetValue: resourceGroupName,
|
||
|
Constraints: []validation.Constraint{{Target: "resourceGroupName", Name: validation.MaxLength, Rule: 90, Chain: nil},
|
||
|
{Target: "resourceGroupName", Name: validation.MinLength, Rule: 1, Chain: nil}}},
|
||
|
{TargetValue: namespaceName,
|
||
|
Constraints: []validation.Constraint{{Target: "namespaceName", Name: validation.MaxLength, Rule: 50, Chain: nil},
|
||
|
{Target: "namespaceName", Name: validation.MinLength, Rule: 6, Chain: nil}}},
|
||
|
{TargetValue: topicName,
|
||
|
Constraints: []validation.Constraint{{Target: "topicName", Name: validation.MaxLength, Rule: 50, Chain: nil},
|
||
|
{Target: "topicName", Name: validation.MinLength, Rule: 1, Chain: nil}}},
|
||
|
{TargetValue: authorizationRuleName,
|
||
|
Constraints: []validation.Constraint{{Target: "authorizationRuleName", Name: validation.MaxLength, Rule: 50, Chain: nil},
|
||
|
{Target: "authorizationRuleName", Name: validation.MinLength, Rule: 1, Chain: nil}}}}); err != nil {
|
||
|
return result, validation.NewErrorWithValidationError(err, "servicebus.TopicsClient", "DeleteAuthorizationRule")
|
||
|
}
|
||
|
|
||
|
req, err := client.DeleteAuthorizationRulePreparer(resourceGroupName, namespaceName, topicName, authorizationRuleName)
|
||
|
if err != nil {
|
||
|
err = autorest.NewErrorWithError(err, "servicebus.TopicsClient", "DeleteAuthorizationRule", nil, "Failure preparing request")
|
||
|
return
|
||
|
}
|
||
|
|
||
|
resp, err := client.DeleteAuthorizationRuleSender(req)
|
||
|
if err != nil {
|
||
|
result.Response = resp
|
||
|
err = autorest.NewErrorWithError(err, "servicebus.TopicsClient", "DeleteAuthorizationRule", resp, "Failure sending request")
|
||
|
return
|
||
|
}
|
||
|
|
||
|
result, err = client.DeleteAuthorizationRuleResponder(resp)
|
||
|
if err != nil {
|
||
|
err = autorest.NewErrorWithError(err, "servicebus.TopicsClient", "DeleteAuthorizationRule", resp, "Failure responding to request")
|
||
|
}
|
||
|
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// DeleteAuthorizationRulePreparer prepares the DeleteAuthorizationRule request.
|
||
|
func (client TopicsClient) DeleteAuthorizationRulePreparer(resourceGroupName string, namespaceName string, topicName string, authorizationRuleName string) (*http.Request, error) {
|
||
|
pathParameters := map[string]interface{}{
|
||
|
"authorizationRuleName": autorest.Encode("path", authorizationRuleName),
|
||
|
"namespaceName": autorest.Encode("path", namespaceName),
|
||
|
"resourceGroupName": autorest.Encode("path", resourceGroupName),
|
||
|
"subscriptionId": autorest.Encode("path", client.SubscriptionID),
|
||
|
"topicName": autorest.Encode("path", topicName),
|
||
|
}
|
||
|
|
||
|
const APIVersion = "2015-08-01"
|
||
|
queryParameters := map[string]interface{}{
|
||
|
"api-version": APIVersion,
|
||
|
}
|
||
|
|
||
|
preparer := autorest.CreatePreparer(
|
||
|
autorest.AsDelete(),
|
||
|
autorest.WithBaseURL(client.BaseURI),
|
||
|
autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/topics/{topicName}/authorizationRules/{authorizationRuleName}", pathParameters),
|
||
|
autorest.WithQueryParameters(queryParameters))
|
||
|
return preparer.Prepare(&http.Request{})
|
||
|
}
|
||
|
|
||
|
// DeleteAuthorizationRuleSender sends the DeleteAuthorizationRule request. The method will close the
|
||
|
// http.Response Body if it receives an error.
|
||
|
func (client TopicsClient) DeleteAuthorizationRuleSender(req *http.Request) (*http.Response, error) {
|
||
|
return autorest.SendWithSender(client, req)
|
||
|
}
|
||
|
|
||
|
// DeleteAuthorizationRuleResponder handles the response to the DeleteAuthorizationRule request. The method always
|
||
|
// closes the http.Response Body.
|
||
|
func (client TopicsClient) DeleteAuthorizationRuleResponder(resp *http.Response) (result autorest.Response, err error) {
|
||
|
err = autorest.Respond(
|
||
|
resp,
|
||
|
client.ByInspecting(),
|
||
|
azure.WithErrorUnlessStatusCode(http.StatusNoContent, http.StatusOK),
|
||
|
autorest.ByClosing())
|
||
|
result.Response = resp
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// Get returns a description for the specified topic.
|
||
|
//
|
||
|
// resourceGroupName is name of the Resource group within the Azure
|
||
|
// subscription. namespaceName is the namespace name topicName is the topic
|
||
|
// name.
|
||
|
func (client TopicsClient) Get(resourceGroupName string, namespaceName string, topicName string) (result TopicResource, err error) {
|
||
|
if err := validation.Validate([]validation.Validation{
|
||
|
{TargetValue: resourceGroupName,
|
||
|
Constraints: []validation.Constraint{{Target: "resourceGroupName", Name: validation.MaxLength, Rule: 90, Chain: nil},
|
||
|
{Target: "resourceGroupName", Name: validation.MinLength, Rule: 1, Chain: nil}}},
|
||
|
{TargetValue: namespaceName,
|
||
|
Constraints: []validation.Constraint{{Target: "namespaceName", Name: validation.MaxLength, Rule: 50, Chain: nil},
|
||
|
{Target: "namespaceName", Name: validation.MinLength, Rule: 6, Chain: nil}}},
|
||
|
{TargetValue: topicName,
|
||
|
Constraints: []validation.Constraint{{Target: "topicName", Name: validation.MaxLength, Rule: 50, Chain: nil},
|
||
|
{Target: "topicName", Name: validation.MinLength, Rule: 1, Chain: nil}}}}); err != nil {
|
||
|
return result, validation.NewErrorWithValidationError(err, "servicebus.TopicsClient", "Get")
|
||
|
}
|
||
|
|
||
|
req, err := client.GetPreparer(resourceGroupName, namespaceName, topicName)
|
||
|
if err != nil {
|
||
|
err = autorest.NewErrorWithError(err, "servicebus.TopicsClient", "Get", nil, "Failure preparing request")
|
||
|
return
|
||
|
}
|
||
|
|
||
|
resp, err := client.GetSender(req)
|
||
|
if err != nil {
|
||
|
result.Response = autorest.Response{Response: resp}
|
||
|
err = autorest.NewErrorWithError(err, "servicebus.TopicsClient", "Get", resp, "Failure sending request")
|
||
|
return
|
||
|
}
|
||
|
|
||
|
result, err = client.GetResponder(resp)
|
||
|
if err != nil {
|
||
|
err = autorest.NewErrorWithError(err, "servicebus.TopicsClient", "Get", resp, "Failure responding to request")
|
||
|
}
|
||
|
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// GetPreparer prepares the Get request.
|
||
|
func (client TopicsClient) GetPreparer(resourceGroupName string, namespaceName string, topicName string) (*http.Request, error) {
|
||
|
pathParameters := map[string]interface{}{
|
||
|
"namespaceName": autorest.Encode("path", namespaceName),
|
||
|
"resourceGroupName": autorest.Encode("path", resourceGroupName),
|
||
|
"subscriptionId": autorest.Encode("path", client.SubscriptionID),
|
||
|
"topicName": autorest.Encode("path", topicName),
|
||
|
}
|
||
|
|
||
|
const APIVersion = "2015-08-01"
|
||
|
queryParameters := map[string]interface{}{
|
||
|
"api-version": APIVersion,
|
||
|
}
|
||
|
|
||
|
preparer := autorest.CreatePreparer(
|
||
|
autorest.AsGet(),
|
||
|
autorest.WithBaseURL(client.BaseURI),
|
||
|
autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/topics/{topicName}", pathParameters),
|
||
|
autorest.WithQueryParameters(queryParameters))
|
||
|
return preparer.Prepare(&http.Request{})
|
||
|
}
|
||
|
|
||
|
// GetSender sends the Get request. The method will close the
|
||
|
// http.Response Body if it receives an error.
|
||
|
func (client TopicsClient) GetSender(req *http.Request) (*http.Response, error) {
|
||
|
return autorest.SendWithSender(client, req)
|
||
|
}
|
||
|
|
||
|
// GetResponder handles the response to the Get request. The method always
|
||
|
// closes the http.Response Body.
|
||
|
func (client TopicsClient) GetResponder(resp *http.Response) (result TopicResource, err error) {
|
||
|
err = autorest.Respond(
|
||
|
resp,
|
||
|
client.ByInspecting(),
|
||
|
azure.WithErrorUnlessStatusCode(http.StatusOK),
|
||
|
autorest.ByUnmarshallingJSON(&result),
|
||
|
autorest.ByClosing())
|
||
|
result.Response = autorest.Response{Response: resp}
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// GetAuthorizationRule returns the specified authorization rule.
|
||
|
//
|
||
|
// resourceGroupName is name of the Resource group within the Azure
|
||
|
// subscription. namespaceName is the namespace name topicName is the topic
|
||
|
// name. authorizationRuleName is the authorizationrule name.
|
||
|
func (client TopicsClient) GetAuthorizationRule(resourceGroupName string, namespaceName string, topicName string, authorizationRuleName string) (result SharedAccessAuthorizationRuleResource, err error) {
|
||
|
if err := validation.Validate([]validation.Validation{
|
||
|
{TargetValue: resourceGroupName,
|
||
|
Constraints: []validation.Constraint{{Target: "resourceGroupName", Name: validation.MaxLength, Rule: 90, Chain: nil},
|
||
|
{Target: "resourceGroupName", Name: validation.MinLength, Rule: 1, Chain: nil}}},
|
||
|
{TargetValue: namespaceName,
|
||
|
Constraints: []validation.Constraint{{Target: "namespaceName", Name: validation.MaxLength, Rule: 50, Chain: nil},
|
||
|
{Target: "namespaceName", Name: validation.MinLength, Rule: 6, Chain: nil}}},
|
||
|
{TargetValue: topicName,
|
||
|
Constraints: []validation.Constraint{{Target: "topicName", Name: validation.MaxLength, Rule: 50, Chain: nil},
|
||
|
{Target: "topicName", Name: validation.MinLength, Rule: 1, Chain: nil}}},
|
||
|
{TargetValue: authorizationRuleName,
|
||
|
Constraints: []validation.Constraint{{Target: "authorizationRuleName", Name: validation.MaxLength, Rule: 50, Chain: nil},
|
||
|
{Target: "authorizationRuleName", Name: validation.MinLength, Rule: 1, Chain: nil}}}}); err != nil {
|
||
|
return result, validation.NewErrorWithValidationError(err, "servicebus.TopicsClient", "GetAuthorizationRule")
|
||
|
}
|
||
|
|
||
|
req, err := client.GetAuthorizationRulePreparer(resourceGroupName, namespaceName, topicName, authorizationRuleName)
|
||
|
if err != nil {
|
||
|
err = autorest.NewErrorWithError(err, "servicebus.TopicsClient", "GetAuthorizationRule", nil, "Failure preparing request")
|
||
|
return
|
||
|
}
|
||
|
|
||
|
resp, err := client.GetAuthorizationRuleSender(req)
|
||
|
if err != nil {
|
||
|
result.Response = autorest.Response{Response: resp}
|
||
|
err = autorest.NewErrorWithError(err, "servicebus.TopicsClient", "GetAuthorizationRule", resp, "Failure sending request")
|
||
|
return
|
||
|
}
|
||
|
|
||
|
result, err = client.GetAuthorizationRuleResponder(resp)
|
||
|
if err != nil {
|
||
|
err = autorest.NewErrorWithError(err, "servicebus.TopicsClient", "GetAuthorizationRule", resp, "Failure responding to request")
|
||
|
}
|
||
|
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// GetAuthorizationRulePreparer prepares the GetAuthorizationRule request.
|
||
|
func (client TopicsClient) GetAuthorizationRulePreparer(resourceGroupName string, namespaceName string, topicName string, authorizationRuleName string) (*http.Request, error) {
|
||
|
pathParameters := map[string]interface{}{
|
||
|
"authorizationRuleName": autorest.Encode("path", authorizationRuleName),
|
||
|
"namespaceName": autorest.Encode("path", namespaceName),
|
||
|
"resourceGroupName": autorest.Encode("path", resourceGroupName),
|
||
|
"subscriptionId": autorest.Encode("path", client.SubscriptionID),
|
||
|
"topicName": autorest.Encode("path", topicName),
|
||
|
}
|
||
|
|
||
|
const APIVersion = "2015-08-01"
|
||
|
queryParameters := map[string]interface{}{
|
||
|
"api-version": APIVersion,
|
||
|
}
|
||
|
|
||
|
preparer := autorest.CreatePreparer(
|
||
|
autorest.AsGet(),
|
||
|
autorest.WithBaseURL(client.BaseURI),
|
||
|
autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/topics/{topicName}/authorizationRules/{authorizationRuleName}", pathParameters),
|
||
|
autorest.WithQueryParameters(queryParameters))
|
||
|
return preparer.Prepare(&http.Request{})
|
||
|
}
|
||
|
|
||
|
// GetAuthorizationRuleSender sends the GetAuthorizationRule request. The method will close the
|
||
|
// http.Response Body if it receives an error.
|
||
|
func (client TopicsClient) GetAuthorizationRuleSender(req *http.Request) (*http.Response, error) {
|
||
|
return autorest.SendWithSender(client, req)
|
||
|
}
|
||
|
|
||
|
// GetAuthorizationRuleResponder handles the response to the GetAuthorizationRule request. The method always
|
||
|
// closes the http.Response Body.
|
||
|
func (client TopicsClient) GetAuthorizationRuleResponder(resp *http.Response) (result SharedAccessAuthorizationRuleResource, err error) {
|
||
|
err = autorest.Respond(
|
||
|
resp,
|
||
|
client.ByInspecting(),
|
||
|
azure.WithErrorUnlessStatusCode(http.StatusOK),
|
||
|
autorest.ByUnmarshallingJSON(&result),
|
||
|
autorest.ByClosing())
|
||
|
result.Response = autorest.Response{Response: resp}
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// ListAll gets all the topics in a namespace.
|
||
|
//
|
||
|
// resourceGroupName is name of the Resource group within the Azure
|
||
|
// subscription. namespaceName is the namespace name
|
||
|
func (client TopicsClient) ListAll(resourceGroupName string, namespaceName string) (result TopicListResult, err error) {
|
||
|
if err := validation.Validate([]validation.Validation{
|
||
|
{TargetValue: resourceGroupName,
|
||
|
Constraints: []validation.Constraint{{Target: "resourceGroupName", Name: validation.MaxLength, Rule: 90, Chain: nil},
|
||
|
{Target: "resourceGroupName", Name: validation.MinLength, Rule: 1, Chain: nil}}},
|
||
|
{TargetValue: namespaceName,
|
||
|
Constraints: []validation.Constraint{{Target: "namespaceName", Name: validation.MaxLength, Rule: 50, Chain: nil},
|
||
|
{Target: "namespaceName", Name: validation.MinLength, Rule: 6, Chain: nil}}}}); err != nil {
|
||
|
return result, validation.NewErrorWithValidationError(err, "servicebus.TopicsClient", "ListAll")
|
||
|
}
|
||
|
|
||
|
req, err := client.ListAllPreparer(resourceGroupName, namespaceName)
|
||
|
if err != nil {
|
||
|
err = autorest.NewErrorWithError(err, "servicebus.TopicsClient", "ListAll", nil, "Failure preparing request")
|
||
|
return
|
||
|
}
|
||
|
|
||
|
resp, err := client.ListAllSender(req)
|
||
|
if err != nil {
|
||
|
result.Response = autorest.Response{Response: resp}
|
||
|
err = autorest.NewErrorWithError(err, "servicebus.TopicsClient", "ListAll", resp, "Failure sending request")
|
||
|
return
|
||
|
}
|
||
|
|
||
|
result, err = client.ListAllResponder(resp)
|
||
|
if err != nil {
|
||
|
err = autorest.NewErrorWithError(err, "servicebus.TopicsClient", "ListAll", resp, "Failure responding to request")
|
||
|
}
|
||
|
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// ListAllPreparer prepares the ListAll request.
|
||
|
func (client TopicsClient) ListAllPreparer(resourceGroupName string, namespaceName string) (*http.Request, error) {
|
||
|
pathParameters := map[string]interface{}{
|
||
|
"namespaceName": autorest.Encode("path", namespaceName),
|
||
|
"resourceGroupName": autorest.Encode("path", resourceGroupName),
|
||
|
"subscriptionId": autorest.Encode("path", client.SubscriptionID),
|
||
|
}
|
||
|
|
||
|
const APIVersion = "2015-08-01"
|
||
|
queryParameters := map[string]interface{}{
|
||
|
"api-version": APIVersion,
|
||
|
}
|
||
|
|
||
|
preparer := autorest.CreatePreparer(
|
||
|
autorest.AsGet(),
|
||
|
autorest.WithBaseURL(client.BaseURI),
|
||
|
autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/topics", pathParameters),
|
||
|
autorest.WithQueryParameters(queryParameters))
|
||
|
return preparer.Prepare(&http.Request{})
|
||
|
}
|
||
|
|
||
|
// ListAllSender sends the ListAll request. The method will close the
|
||
|
// http.Response Body if it receives an error.
|
||
|
func (client TopicsClient) ListAllSender(req *http.Request) (*http.Response, error) {
|
||
|
return autorest.SendWithSender(client, req)
|
||
|
}
|
||
|
|
||
|
// ListAllResponder handles the response to the ListAll request. The method always
|
||
|
// closes the http.Response Body.
|
||
|
func (client TopicsClient) ListAllResponder(resp *http.Response) (result TopicListResult, err error) {
|
||
|
err = autorest.Respond(
|
||
|
resp,
|
||
|
client.ByInspecting(),
|
||
|
azure.WithErrorUnlessStatusCode(http.StatusOK),
|
||
|
autorest.ByUnmarshallingJSON(&result),
|
||
|
autorest.ByClosing())
|
||
|
result.Response = autorest.Response{Response: resp}
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// ListAllNextResults retrieves the next set of results, if any.
|
||
|
func (client TopicsClient) ListAllNextResults(lastResults TopicListResult) (result TopicListResult, err error) {
|
||
|
req, err := lastResults.TopicListResultPreparer()
|
||
|
if err != nil {
|
||
|
return result, autorest.NewErrorWithError(err, "servicebus.TopicsClient", "ListAll", nil, "Failure preparing next results request")
|
||
|
}
|
||
|
if req == nil {
|
||
|
return
|
||
|
}
|
||
|
|
||
|
resp, err := client.ListAllSender(req)
|
||
|
if err != nil {
|
||
|
result.Response = autorest.Response{Response: resp}
|
||
|
return result, autorest.NewErrorWithError(err, "servicebus.TopicsClient", "ListAll", resp, "Failure sending next results request")
|
||
|
}
|
||
|
|
||
|
result, err = client.ListAllResponder(resp)
|
||
|
if err != nil {
|
||
|
err = autorest.NewErrorWithError(err, "servicebus.TopicsClient", "ListAll", resp, "Failure responding to next results request")
|
||
|
}
|
||
|
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// ListAuthorizationRules gets authorization rules for a topic.
|
||
|
//
|
||
|
// resourceGroupName is name of the Resource group within the Azure
|
||
|
// subscription. namespaceName is the namespace name topicName is the topic
|
||
|
// name.
|
||
|
func (client TopicsClient) ListAuthorizationRules(resourceGroupName string, namespaceName string, topicName string) (result SharedAccessAuthorizationRuleListResult, err error) {
|
||
|
if err := validation.Validate([]validation.Validation{
|
||
|
{TargetValue: resourceGroupName,
|
||
|
Constraints: []validation.Constraint{{Target: "resourceGroupName", Name: validation.MaxLength, Rule: 90, Chain: nil},
|
||
|
{Target: "resourceGroupName", Name: validation.MinLength, Rule: 1, Chain: nil}}},
|
||
|
{TargetValue: namespaceName,
|
||
|
Constraints: []validation.Constraint{{Target: "namespaceName", Name: validation.MaxLength, Rule: 50, Chain: nil},
|
||
|
{Target: "namespaceName", Name: validation.MinLength, Rule: 6, Chain: nil}}},
|
||
|
{TargetValue: topicName,
|
||
|
Constraints: []validation.Constraint{{Target: "topicName", Name: validation.MaxLength, Rule: 50, Chain: nil},
|
||
|
{Target: "topicName", Name: validation.MinLength, Rule: 1, Chain: nil}}}}); err != nil {
|
||
|
return result, validation.NewErrorWithValidationError(err, "servicebus.TopicsClient", "ListAuthorizationRules")
|
||
|
}
|
||
|
|
||
|
req, err := client.ListAuthorizationRulesPreparer(resourceGroupName, namespaceName, topicName)
|
||
|
if err != nil {
|
||
|
err = autorest.NewErrorWithError(err, "servicebus.TopicsClient", "ListAuthorizationRules", nil, "Failure preparing request")
|
||
|
return
|
||
|
}
|
||
|
|
||
|
resp, err := client.ListAuthorizationRulesSender(req)
|
||
|
if err != nil {
|
||
|
result.Response = autorest.Response{Response: resp}
|
||
|
err = autorest.NewErrorWithError(err, "servicebus.TopicsClient", "ListAuthorizationRules", resp, "Failure sending request")
|
||
|
return
|
||
|
}
|
||
|
|
||
|
result, err = client.ListAuthorizationRulesResponder(resp)
|
||
|
if err != nil {
|
||
|
err = autorest.NewErrorWithError(err, "servicebus.TopicsClient", "ListAuthorizationRules", resp, "Failure responding to request")
|
||
|
}
|
||
|
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// ListAuthorizationRulesPreparer prepares the ListAuthorizationRules request.
|
||
|
func (client TopicsClient) ListAuthorizationRulesPreparer(resourceGroupName string, namespaceName string, topicName string) (*http.Request, error) {
|
||
|
pathParameters := map[string]interface{}{
|
||
|
"namespaceName": autorest.Encode("path", namespaceName),
|
||
|
"resourceGroupName": autorest.Encode("path", resourceGroupName),
|
||
|
"subscriptionId": autorest.Encode("path", client.SubscriptionID),
|
||
|
"topicName": autorest.Encode("path", topicName),
|
||
|
}
|
||
|
|
||
|
const APIVersion = "2015-08-01"
|
||
|
queryParameters := map[string]interface{}{
|
||
|
"api-version": APIVersion,
|
||
|
}
|
||
|
|
||
|
preparer := autorest.CreatePreparer(
|
||
|
autorest.AsGet(),
|
||
|
autorest.WithBaseURL(client.BaseURI),
|
||
|
autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/topics/{topicName}/authorizationRules", pathParameters),
|
||
|
autorest.WithQueryParameters(queryParameters))
|
||
|
return preparer.Prepare(&http.Request{})
|
||
|
}
|
||
|
|
||
|
// ListAuthorizationRulesSender sends the ListAuthorizationRules request. The method will close the
|
||
|
// http.Response Body if it receives an error.
|
||
|
func (client TopicsClient) ListAuthorizationRulesSender(req *http.Request) (*http.Response, error) {
|
||
|
return autorest.SendWithSender(client, req)
|
||
|
}
|
||
|
|
||
|
// ListAuthorizationRulesResponder handles the response to the ListAuthorizationRules request. The method always
|
||
|
// closes the http.Response Body.
|
||
|
func (client TopicsClient) ListAuthorizationRulesResponder(resp *http.Response) (result SharedAccessAuthorizationRuleListResult, err error) {
|
||
|
err = autorest.Respond(
|
||
|
resp,
|
||
|
client.ByInspecting(),
|
||
|
azure.WithErrorUnlessStatusCode(http.StatusOK),
|
||
|
autorest.ByUnmarshallingJSON(&result),
|
||
|
autorest.ByClosing())
|
||
|
result.Response = autorest.Response{Response: resp}
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// ListAuthorizationRulesNextResults retrieves the next set of results, if any.
|
||
|
func (client TopicsClient) ListAuthorizationRulesNextResults(lastResults SharedAccessAuthorizationRuleListResult) (result SharedAccessAuthorizationRuleListResult, err error) {
|
||
|
req, err := lastResults.SharedAccessAuthorizationRuleListResultPreparer()
|
||
|
if err != nil {
|
||
|
return result, autorest.NewErrorWithError(err, "servicebus.TopicsClient", "ListAuthorizationRules", nil, "Failure preparing next results request")
|
||
|
}
|
||
|
if req == nil {
|
||
|
return
|
||
|
}
|
||
|
|
||
|
resp, err := client.ListAuthorizationRulesSender(req)
|
||
|
if err != nil {
|
||
|
result.Response = autorest.Response{Response: resp}
|
||
|
return result, autorest.NewErrorWithError(err, "servicebus.TopicsClient", "ListAuthorizationRules", resp, "Failure sending next results request")
|
||
|
}
|
||
|
|
||
|
result, err = client.ListAuthorizationRulesResponder(resp)
|
||
|
if err != nil {
|
||
|
err = autorest.NewErrorWithError(err, "servicebus.TopicsClient", "ListAuthorizationRules", resp, "Failure responding to next results request")
|
||
|
}
|
||
|
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// ListKeys gets the primary and secondary connection strings for the topic.
|
||
|
//
|
||
|
// resourceGroupName is name of the Resource group within the Azure
|
||
|
// subscription. namespaceName is the namespace name topicName is the topic
|
||
|
// name. authorizationRuleName is the authorizationrule name.
|
||
|
func (client TopicsClient) ListKeys(resourceGroupName string, namespaceName string, topicName string, authorizationRuleName string) (result ResourceListKeys, err error) {
|
||
|
if err := validation.Validate([]validation.Validation{
|
||
|
{TargetValue: resourceGroupName,
|
||
|
Constraints: []validation.Constraint{{Target: "resourceGroupName", Name: validation.MaxLength, Rule: 90, Chain: nil},
|
||
|
{Target: "resourceGroupName", Name: validation.MinLength, Rule: 1, Chain: nil}}},
|
||
|
{TargetValue: namespaceName,
|
||
|
Constraints: []validation.Constraint{{Target: "namespaceName", Name: validation.MaxLength, Rule: 50, Chain: nil},
|
||
|
{Target: "namespaceName", Name: validation.MinLength, Rule: 6, Chain: nil}}},
|
||
|
{TargetValue: topicName,
|
||
|
Constraints: []validation.Constraint{{Target: "topicName", Name: validation.MaxLength, Rule: 50, Chain: nil},
|
||
|
{Target: "topicName", Name: validation.MinLength, Rule: 1, Chain: nil}}},
|
||
|
{TargetValue: authorizationRuleName,
|
||
|
Constraints: []validation.Constraint{{Target: "authorizationRuleName", Name: validation.MaxLength, Rule: 50, Chain: nil},
|
||
|
{Target: "authorizationRuleName", Name: validation.MinLength, Rule: 1, Chain: nil}}}}); err != nil {
|
||
|
return result, validation.NewErrorWithValidationError(err, "servicebus.TopicsClient", "ListKeys")
|
||
|
}
|
||
|
|
||
|
req, err := client.ListKeysPreparer(resourceGroupName, namespaceName, topicName, authorizationRuleName)
|
||
|
if err != nil {
|
||
|
err = autorest.NewErrorWithError(err, "servicebus.TopicsClient", "ListKeys", nil, "Failure preparing request")
|
||
|
return
|
||
|
}
|
||
|
|
||
|
resp, err := client.ListKeysSender(req)
|
||
|
if err != nil {
|
||
|
result.Response = autorest.Response{Response: resp}
|
||
|
err = autorest.NewErrorWithError(err, "servicebus.TopicsClient", "ListKeys", resp, "Failure sending request")
|
||
|
return
|
||
|
}
|
||
|
|
||
|
result, err = client.ListKeysResponder(resp)
|
||
|
if err != nil {
|
||
|
err = autorest.NewErrorWithError(err, "servicebus.TopicsClient", "ListKeys", resp, "Failure responding to request")
|
||
|
}
|
||
|
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// ListKeysPreparer prepares the ListKeys request.
|
||
|
func (client TopicsClient) ListKeysPreparer(resourceGroupName string, namespaceName string, topicName string, authorizationRuleName string) (*http.Request, error) {
|
||
|
pathParameters := map[string]interface{}{
|
||
|
"authorizationRuleName": autorest.Encode("path", authorizationRuleName),
|
||
|
"namespaceName": autorest.Encode("path", namespaceName),
|
||
|
"resourceGroupName": autorest.Encode("path", resourceGroupName),
|
||
|
"subscriptionId": autorest.Encode("path", client.SubscriptionID),
|
||
|
"topicName": autorest.Encode("path", topicName),
|
||
|
}
|
||
|
|
||
|
const APIVersion = "2015-08-01"
|
||
|
queryParameters := map[string]interface{}{
|
||
|
"api-version": APIVersion,
|
||
|
}
|
||
|
|
||
|
preparer := autorest.CreatePreparer(
|
||
|
autorest.AsPost(),
|
||
|
autorest.WithBaseURL(client.BaseURI),
|
||
|
autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/topics/{topicName}/authorizationRules/{authorizationRuleName}/ListKeys", pathParameters),
|
||
|
autorest.WithQueryParameters(queryParameters))
|
||
|
return preparer.Prepare(&http.Request{})
|
||
|
}
|
||
|
|
||
|
// ListKeysSender sends the ListKeys request. The method will close the
|
||
|
// http.Response Body if it receives an error.
|
||
|
func (client TopicsClient) ListKeysSender(req *http.Request) (*http.Response, error) {
|
||
|
return autorest.SendWithSender(client, req)
|
||
|
}
|
||
|
|
||
|
// ListKeysResponder handles the response to the ListKeys request. The method always
|
||
|
// closes the http.Response Body.
|
||
|
func (client TopicsClient) ListKeysResponder(resp *http.Response) (result ResourceListKeys, err error) {
|
||
|
err = autorest.Respond(
|
||
|
resp,
|
||
|
client.ByInspecting(),
|
||
|
azure.WithErrorUnlessStatusCode(http.StatusOK),
|
||
|
autorest.ByUnmarshallingJSON(&result),
|
||
|
autorest.ByClosing())
|
||
|
result.Response = autorest.Response{Response: resp}
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// RegenerateKeys regenerates primary or secondary connection strings for the
|
||
|
// topic.
|
||
|
//
|
||
|
// resourceGroupName is name of the Resource group within the Azure
|
||
|
// subscription. namespaceName is the namespace name topicName is the topic
|
||
|
// name. authorizationRuleName is the authorizationrule name. parameters is
|
||
|
// parameters supplied to regenerate the authorization rule.
|
||
|
func (client TopicsClient) RegenerateKeys(resourceGroupName string, namespaceName string, topicName string, authorizationRuleName string, parameters RegenerateKeysParameters) (result ResourceListKeys, err error) {
|
||
|
if err := validation.Validate([]validation.Validation{
|
||
|
{TargetValue: resourceGroupName,
|
||
|
Constraints: []validation.Constraint{{Target: "resourceGroupName", Name: validation.MaxLength, Rule: 90, Chain: nil},
|
||
|
{Target: "resourceGroupName", Name: validation.MinLength, Rule: 1, Chain: nil}}},
|
||
|
{TargetValue: namespaceName,
|
||
|
Constraints: []validation.Constraint{{Target: "namespaceName", Name: validation.MaxLength, Rule: 50, Chain: nil},
|
||
|
{Target: "namespaceName", Name: validation.MinLength, Rule: 6, Chain: nil}}},
|
||
|
{TargetValue: topicName,
|
||
|
Constraints: []validation.Constraint{{Target: "topicName", Name: validation.MaxLength, Rule: 50, Chain: nil},
|
||
|
{Target: "topicName", Name: validation.MinLength, Rule: 1, Chain: nil}}},
|
||
|
{TargetValue: authorizationRuleName,
|
||
|
Constraints: []validation.Constraint{{Target: "authorizationRuleName", Name: validation.MaxLength, Rule: 50, Chain: nil},
|
||
|
{Target: "authorizationRuleName", Name: validation.MinLength, Rule: 1, Chain: nil}}}}); err != nil {
|
||
|
return result, validation.NewErrorWithValidationError(err, "servicebus.TopicsClient", "RegenerateKeys")
|
||
|
}
|
||
|
|
||
|
req, err := client.RegenerateKeysPreparer(resourceGroupName, namespaceName, topicName, authorizationRuleName, parameters)
|
||
|
if err != nil {
|
||
|
err = autorest.NewErrorWithError(err, "servicebus.TopicsClient", "RegenerateKeys", nil, "Failure preparing request")
|
||
|
return
|
||
|
}
|
||
|
|
||
|
resp, err := client.RegenerateKeysSender(req)
|
||
|
if err != nil {
|
||
|
result.Response = autorest.Response{Response: resp}
|
||
|
err = autorest.NewErrorWithError(err, "servicebus.TopicsClient", "RegenerateKeys", resp, "Failure sending request")
|
||
|
return
|
||
|
}
|
||
|
|
||
|
result, err = client.RegenerateKeysResponder(resp)
|
||
|
if err != nil {
|
||
|
err = autorest.NewErrorWithError(err, "servicebus.TopicsClient", "RegenerateKeys", resp, "Failure responding to request")
|
||
|
}
|
||
|
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// RegenerateKeysPreparer prepares the RegenerateKeys request.
|
||
|
func (client TopicsClient) RegenerateKeysPreparer(resourceGroupName string, namespaceName string, topicName string, authorizationRuleName string, parameters RegenerateKeysParameters) (*http.Request, error) {
|
||
|
pathParameters := map[string]interface{}{
|
||
|
"authorizationRuleName": autorest.Encode("path", authorizationRuleName),
|
||
|
"namespaceName": autorest.Encode("path", namespaceName),
|
||
|
"resourceGroupName": autorest.Encode("path", resourceGroupName),
|
||
|
"subscriptionId": autorest.Encode("path", client.SubscriptionID),
|
||
|
"topicName": autorest.Encode("path", topicName),
|
||
|
}
|
||
|
|
||
|
const APIVersion = "2015-08-01"
|
||
|
queryParameters := map[string]interface{}{
|
||
|
"api-version": APIVersion,
|
||
|
}
|
||
|
|
||
|
preparer := autorest.CreatePreparer(
|
||
|
autorest.AsJSON(),
|
||
|
autorest.AsPost(),
|
||
|
autorest.WithBaseURL(client.BaseURI),
|
||
|
autorest.WithPathParameters("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/topics/{topicName}/authorizationRules/{authorizationRuleName}/regenerateKeys", pathParameters),
|
||
|
autorest.WithJSON(parameters),
|
||
|
autorest.WithQueryParameters(queryParameters))
|
||
|
return preparer.Prepare(&http.Request{})
|
||
|
}
|
||
|
|
||
|
// RegenerateKeysSender sends the RegenerateKeys request. The method will close the
|
||
|
// http.Response Body if it receives an error.
|
||
|
func (client TopicsClient) RegenerateKeysSender(req *http.Request) (*http.Response, error) {
|
||
|
return autorest.SendWithSender(client, req)
|
||
|
}
|
||
|
|
||
|
// RegenerateKeysResponder handles the response to the RegenerateKeys request. The method always
|
||
|
// closes the http.Response Body.
|
||
|
func (client TopicsClient) RegenerateKeysResponder(resp *http.Response) (result ResourceListKeys, err error) {
|
||
|
err = autorest.Respond(
|
||
|
resp,
|
||
|
client.ByInspecting(),
|
||
|
azure.WithErrorUnlessStatusCode(http.StatusOK),
|
||
|
autorest.ByUnmarshallingJSON(&result),
|
||
|
autorest.ByClosing())
|
||
|
result.Response = autorest.Response{Response: resp}
|
||
|
return
|
||
|
}
|