-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathmethod_createvalidatesproperty.go
More file actions
92 lines (76 loc) · 2.93 KB
/
method_createvalidatesproperty.go
File metadata and controls
92 lines (76 loc) · 2.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
package administrativeunit
import (
"context"
"net/http"
"github.com/hashicorp/go-azure-sdk/sdk/client"
"github.com/hashicorp/go-azure-sdk/sdk/odata"
)
// Copyright (c) HashiCorp Inc. All rights reserved.
// Licensed under the MIT License. See NOTICE.txt in the project root for license information.
type CreateValidatesPropertyOperationResponse struct {
HttpResponse *http.Response
OData *odata.OData
}
type CreateValidatesPropertyOperationOptions struct {
Metadata *odata.Metadata
RetryFunc client.RequestRetryFunc
}
func DefaultCreateValidatesPropertyOperationOptions() CreateValidatesPropertyOperationOptions {
return CreateValidatesPropertyOperationOptions{}
}
func (o CreateValidatesPropertyOperationOptions) ToHeaders() *client.Headers {
out := client.Headers{}
return &out
}
func (o CreateValidatesPropertyOperationOptions) ToOData() *odata.Query {
out := odata.Query{}
if o.Metadata != nil {
out.Metadata = *o.Metadata
}
return &out
}
func (o CreateValidatesPropertyOperationOptions) ToQuery() *client.QueryParams {
out := client.QueryParams{}
return &out
}
// CreateValidatesProperty - Invoke action validateProperties. Validate that a Microsoft 365 group's display name or
// mail nickname complies with naming policies. Clients can use this API to determine whether a display name or mail
// nickname is valid before trying to create a Microsoft 365 group. For validating properties of an existing group, use
// the validateProperties function for groups. The following validations are performed for the display name and mail
// nickname properties: 1. Validate the prefix and suffix naming policy 2. Validate the custom banned words policy 3.
// Validate the mail nickname is unique This API returns with the first failure encountered. If one or more properties
// fail multiple validations, only the property with the first validation failure is returned. However, you can validate
// both the mail nickname and the display name and receive a collection of validation errors if you're only validating
// the prefix and suffix naming policy.
func (c AdministrativeUnitClient) CreateValidatesProperty(ctx context.Context, input CreateValidatesPropertyRequest, options CreateValidatesPropertyOperationOptions) (result CreateValidatesPropertyOperationResponse, err error) {
opts := client.RequestOptions{
ContentType: "application/json; charset=utf-8",
ExpectedStatusCodes: []int{
http.StatusAccepted,
http.StatusCreated,
http.StatusNoContent,
http.StatusOK,
},
HttpMethod: http.MethodPost,
OptionsObject: options,
Path: "/administrativeUnits/validateProperties",
RetryFunc: options.RetryFunc,
}
req, err := c.Client.NewRequest(ctx, opts)
if err != nil {
return
}
if err = req.Marshal(input); err != nil {
return
}
var resp *client.Response
resp, err = req.Execute(ctx)
if resp != nil {
result.OData = resp.OData
result.HttpResponse = resp.Response
}
if err != nil {
return
}
return
}