/// <summary>
 /// Initializes a new instance of the ClusterResourceProperties class.
 /// </summary>
 /// <param name="provisioningState">Provisioning state of the Service.
 /// Possible values include: 'Creating', 'Updating', 'Deleting',
 /// 'Deleted', 'Succeeded', 'Failed', 'Moving', 'Moved',
 /// 'MoveFailed'</param>
 /// <param name="networkProfile">Network profile of the Service</param>
 /// <param name="version">Version of the Service</param>
 /// <param name="serviceId">ServiceInstanceEntity GUID which uniquely
 /// identifies a created resource</param>
 public ClusterResourceProperties(string provisioningState = default(string), NetworkProfile networkProfile = default(NetworkProfile), int?version = default(int?), string serviceId = default(string))
 {
     ProvisioningState = provisioningState;
     NetworkProfile    = networkProfile;
     Version           = version;
     ServiceId         = serviceId;
     CustomInit();
 }
Exemple #2
0
 /// <summary>
 /// Initializes a new instance of the ClusterResourceProperties class.
 /// </summary>
 /// <param name="provisioningState">Provisioning state of the Service.
 /// Possible values include: 'Creating', 'Updating', 'Deleting',
 /// 'Deleted', 'Succeeded', 'Failed', 'Moving', 'Moved',
 /// 'MoveFailed'</param>
 /// <param name="networkProfile">Network profile of the Service</param>
 /// <param name="version">Version of the Service</param>
 /// <param name="serviceId">ServiceInstanceEntity GUID which uniquely
 /// identifies a created resource</param>
 /// <param name="powerState">Power state of the Service. Possible
 /// values include: 'Running', 'Stopped'</param>
 /// <param name="fqdn">Fully qualified dns name of the service
 /// instance</param>
 public ClusterResourceProperties(string provisioningState = default(string), NetworkProfile networkProfile = default(NetworkProfile), int?version = default(int?), string serviceId = default(string), string powerState = default(string), bool?zoneRedundant = default(bool?), string fqdn = default(string))
 {
     ProvisioningState = provisioningState;
     NetworkProfile    = networkProfile;
     Version           = version;
     ServiceId         = serviceId;
     PowerState        = powerState;
     ZoneRedundant     = zoneRedundant;
     Fqdn = fqdn;
     CustomInit();
 }
Exemple #3
0
 /// <summary>
 /// Initializes a new instance of the ClusterResourceProperties class.
 /// </summary>
 /// <param name="provisioningState">Provisioning state of the Service.
 /// Possible values include: 'Creating', 'Updating', 'Starting',
 /// 'Stopping', 'Deleting', 'Deleted', 'Succeeded', 'Failed', 'Moving',
 /// 'Moved', 'MoveFailed'</param>
 /// <param name="networkProfile">Network profile of the Service</param>
 /// <param name="vnetAddons">Additional Service settings in vnet
 /// injection instance</param>
 /// <param name="version">Version of the Service</param>
 /// <param name="serviceId">ServiceInstanceEntity GUID which uniquely
 /// identifies a created resource</param>
 /// <param name="powerState">Power state of the Service. Possible
 /// values include: 'Running', 'Stopped'</param>
 /// <param name="fqdn">Fully qualified dns name of the service
 /// instance</param>
 /// <param name="marketplaceResource">Purchasing 3rd party product of
 /// the Service resource.</param>
 public ClusterResourceProperties(string provisioningState = default(string), NetworkProfile networkProfile = default(NetworkProfile), ServiceVNetAddons vnetAddons = default(ServiceVNetAddons), int?version = default(int?), string serviceId = default(string), string powerState = default(string), bool?zoneRedundant = default(bool?), string fqdn = default(string), MarketplaceResource marketplaceResource = default(MarketplaceResource))
 {
     ProvisioningState = provisioningState;
     NetworkProfile    = networkProfile;
     VnetAddons        = vnetAddons;
     Version           = version;
     ServiceId         = serviceId;
     PowerState        = powerState;
     ZoneRedundant     = zoneRedundant;
     Fqdn = fqdn;
     MarketplaceResource = marketplaceResource;
     CustomInit();
 }