Merge pull request #4 from zawachte-msft/user/zawachte/cert-api-fix

Certificate API swaps the group and name fields
This commit is contained in:
Zach 2020-09-21 10:42:42 -04:00 коммит произвёл GitHub
Родитель 99f2e43e37 3cc31d7afe
Коммит 6b91aced92
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -28,7 +28,7 @@ func newCertificateClient(subID string, authorizer auth.Authorizer) (*client, er
}
// Get
func (c *client) Get(ctx context.Context, name, group string) (*[]security.Certificate, error) {
func (c *client) Get(ctx context.Context, group, name string) (*[]security.Certificate, error) {
request, err := getCertificateRequest(name, nil)
if err != nil {
return nil, err
@ -41,7 +41,7 @@ func (c *client) Get(ctx context.Context, name, group string) (*[]security.Certi
}
// CreateOrUpdate
func (c *client) CreateOrUpdate(ctx context.Context, name, group string, sg *security.Certificate) (*security.Certificate, error) {
func (c *client) CreateOrUpdate(ctx context.Context, group, name string, sg *security.Certificate) (*security.Certificate, error) {
request, err := getCertificateRequest(name, sg)
if err != nil {
return nil, err
@ -62,7 +62,7 @@ func (c *client) CreateOrUpdate(ctx context.Context, name, group string, sg *sec
}
// Delete methods invokes create or update on the client
func (c *client) Delete(ctx context.Context, name, group string) error {
func (c *client) Delete(ctx context.Context, group, name string) error {
cert, err := c.Get(ctx, name, group)
if err != nil {
return err