-
Notifications
You must be signed in to change notification settings - Fork 13
/
CollectionsToSubscriptionsMapping.go
34 lines (31 loc) · 1.27 KB
/
CollectionsToSubscriptionsMapping.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
34
package armmarketplace_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/marketplace/armmarketplace"
)
// x-ms-original-file: specification/marketplace/resource-manager/Microsoft.Marketplace/stable/2021-06-01/examples/CollectionsToSubscriptionsMapping.json
func ExamplePrivateStoreClient_CollectionsToSubscriptionsMapping() {
cred, err := azidentity.NewDefaultAzureCredential(nil)
if err != nil {
log.Fatalf("failed to obtain a credential: %v", err)
}
ctx := context.Background()
client := armmarketplace.NewPrivateStoreClient(cred, nil)
res, err := client.CollectionsToSubscriptionsMapping(ctx,
"<private-store-id>",
&armmarketplace.PrivateStoreClientCollectionsToSubscriptionsMappingOptions{Payload: &armmarketplace.CollectionsToSubscriptionsMappingPayload{
Properties: &armmarketplace.CollectionsToSubscriptionsMappingProperties{
SubscriptionIDs: []*string{
to.StringPtr("b340914e-353d-453a-85fb-8f9b65b51f91"),
to.StringPtr("f2baa04d-5bfc-461b-b6d8-61b403c9ec48")},
},
},
})
if err != nil {
log.Fatal(err)
}
log.Printf("Response result: %#v\n", res.PrivateStoreClientCollectionsToSubscriptionsMappingResult)
}