コード例 #1
0
 public PSClusterPatch(PSKeyVaultProperties keyVaultProperties = default(PSKeyVaultProperties), PSClusterSku sku = default(PSClusterSku), Hashtable tags = default(Hashtable), PSIdentity identity = default(PSIdentity), string billingType = default(string))
 {
     KeyVaultProperties = keyVaultProperties;
     Sku         = sku;
     Tags        = tags;
     Identity    = identity;
     BillingType = billingType;
 }
コード例 #2
0
 public PSCluster(string location, string id = default(string), string name = default(string), string type = default(string), Hashtable tags = default(Hashtable), PSIdentity identity = default(PSIdentity), PSClusterSku sku = default(PSClusterSku), string nextLink = default(string), string clusterId = default(string), string provisioningState = default(string), PSKeyVaultProperties keyVaultProperties = default(PSKeyVaultProperties))
 {
     Id                 = id;
     Location           = location;
     Name               = name;
     Type               = type;
     Tags               = tags;
     Identity           = identity;
     Sku                = sku;
     NextLink           = nextLink;
     ClusterId          = clusterId;
     ProvisioningState  = provisioningState;
     KeyVaultProperties = keyVaultProperties;
     validateClusterName();
 }
コード例 #3
0
ファイル: PSCluster.cs プロジェクト: viparek/azure-powershell
        public PSCluster(string location, PSIdentity identity = default, PSClusterSku sku = default, string id = default, string provisioningState = default, bool isDoubleEncryptionEnabled = default, bool isAvailabilityZonesEnabled = default, string billingType = default, PSKeyVaultProperties keyVaultProperties = default, string lastModifiedDate = default, string createdDate = default, IList <AssociatedWorkspace> associatedWorkspaces = default, CapacityReservationProperties capacityReservationProperties = default, Hashtable tags = default, string name = default, string type = default, string nextLink = default, string clusterId = default)
        {
            Identity                      = identity;
            Sku                           = sku;
            Id                            = id;
            ProvisioningState             = provisioningState;
            IsDoubleEncryptionEnabled     = isDoubleEncryptionEnabled;
            IsAvailabilityZonesEnabled    = isAvailabilityZonesEnabled;
            BillingType                   = billingType;
            KeyVaultProperties            = keyVaultProperties;
            LastModifiedDate              = lastModifiedDate;
            CreatedDate                   = createdDate;
            AssociatedWorkspaces          = associatedWorkspaces;
            CapacityReservationProperties = capacityReservationProperties;

            Tags      = tags;
            Location  = location;
            Name      = name;
            Type      = type;
            ClusterId = clusterId;
            validateClusterName();
        }
コード例 #4
0
 public PSClusterPatch(PSKeyVaultProperties keyVaultProperties = default(PSKeyVaultProperties), PSClusterSku sku = default(PSClusterSku), Hashtable tags = default(Hashtable))
 {
     KeyVaultProperties = keyVaultProperties;
     Sku  = sku;
     Tags = tags;
 }