1package resources
2
3// Copyright (c) Microsoft Corporation. All rights reserved.
4// Licensed under the MIT License. See License.txt in the project root for license information.
5//
6// Code generated by Microsoft (R) AutoRest Code Generator.
7// Changes may cause incorrect behavior and will be lost if the code is regenerated.
8
9// DeploymentMode enumerates the values for deployment mode.
10type DeploymentMode string
11
12const (
13	// Complete ...
14	Complete DeploymentMode = "Complete"
15	// Incremental ...
16	Incremental DeploymentMode = "Incremental"
17)
18
19// PossibleDeploymentModeValues returns an array of possible values for the DeploymentMode const type.
20func PossibleDeploymentModeValues() []DeploymentMode {
21	return []DeploymentMode{Complete, Incremental}
22}
23
24// ResourceIdentityType enumerates the values for resource identity type.
25type ResourceIdentityType string
26
27const (
28	// SystemAssigned ...
29	SystemAssigned ResourceIdentityType = "SystemAssigned"
30)
31
32// PossibleResourceIdentityTypeValues returns an array of possible values for the ResourceIdentityType const type.
33func PossibleResourceIdentityTypeValues() []ResourceIdentityType {
34	return []ResourceIdentityType{SystemAssigned}
35}
36