Exemplo n.º 1
0
 public ExtendedRackspaceCloudIdentity(ExtendedCloudIdentity cloudIdentity)
 {
     this.APIKey = cloudIdentity.APIKey;
     this.Password = cloudIdentity.Password;
     this.Username = cloudIdentity.Username;
     this.TenantId = cloudIdentity.TenantId;
 }
Exemplo n.º 2
0
 public ExtendedRackspaceCloudIdentity(ExtendedCloudIdentity cloudIdentity)
 {
     this.APIKey   = cloudIdentity.APIKey;
     this.Password = cloudIdentity.Password;
     this.Username = cloudIdentity.Username;
     this.TenantId = cloudIdentity.TenantId;
     this.Domain   = string.IsNullOrEmpty(cloudIdentity.Domain) ? null : new Domain(cloudIdentity.Domain);
 }
Exemplo n.º 3
0
 public ExtendedRackspaceCloudIdentity(ExtendedCloudIdentity cloudIdentity)
 {
     this.APIKey = cloudIdentity.APIKey;
     this.Password = cloudIdentity.Password;
     this.Username = cloudIdentity.Username;
     this.TenantId = cloudIdentity.TenantId;
     this.Domain = string.IsNullOrWhiteSpace(cloudIdentity.Domain) ? null : new Domain {Name = cloudIdentity.Domain};
 }
Exemplo n.º 4
0
 public ExtendedRackspaceCloudIdentity(ExtendedCloudIdentity cloudIdentity)
 {
     this.APIKey   = cloudIdentity.APIKey;
     this.Password = cloudIdentity.Password;
     this.Username = cloudIdentity.Username;
     this.TenantId = cloudIdentity.TenantId;
     this.Domain   = string.IsNullOrWhiteSpace(cloudIdentity.Domain) ? null : new net.openstack.Providers.Rackspace.Objects.Domain(cloudIdentity.Domain);
 }