-
Notifications
You must be signed in to change notification settings - Fork 13
/
CreateTeam.go
33 lines (30 loc) · 1.05 KB
/
CreateTeam.go
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
package armsecurityinsight_test
import (
"context"
"log"
"github.com/Azure/azure-sdk-for-go/sdk/azcore/to"
"github.com/Azure/azure-sdk-for-go/sdk/azidentity"
"github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/securityinsight/armsecurityinsight"
)
// x-ms-original-file: specification/securityinsights/resource-manager/Microsoft.SecurityInsights/preview/2021-09-01-preview/examples/incidents/CreateTeam.json
func ExampleIncidentsClient_CreateTeam() {
cred, err := azidentity.NewDefaultAzureCredential(nil)
if err != nil {
log.Fatalf("failed to obtain a credential: %v", err)
}
ctx := context.Background()
client := armsecurityinsight.NewIncidentsClient("<subscription-id>", cred, nil)
res, err := client.CreateTeam(ctx,
"<resource-group-name>",
"<workspace-name>",
"<incident-id>",
armsecurityinsight.TeamProperties{
TeamDescription: to.StringPtr("<team-description>"),
TeamName: to.StringPtr("<team-name>"),
},
nil)
if err != nil {
log.Fatal(err)
}
log.Printf("Response result: %#v\n", res.IncidentsClientCreateTeamResult)
}