Esempio n. 1
0
        public KeyVaultAcl(string identity, RoleConfiguration roleConfiguration, string description = null)
        {
            if (string.IsNullOrWhiteSpace(identity))
            {
                throw new ArgumentNullException(nameof(identity));
            }

            this.Identity          = identity;
            this.Description       = description;
            this.RoleConfiguration = roleConfiguration;
        }
Esempio n. 2
0
        public SecurityGroupV2(string identity, RoleConfiguration roleConfiguration)
        {
            if (string.IsNullOrWhiteSpace(identity))
            {
                throw new ArgumentNullException(nameof(identity));
            }

            this.Identity          = identity;
            this.Description       = null;
            this.RoleConfiguration = roleConfiguration;
        }
Esempio n. 3
0
 public UserPermissionV2(string identity, RoleConfiguration roleConfiguration)
 {
     this.Identity          = identity;
     this.Description       = null;
     this.RoleConfiguration = roleConfiguration;
 }