CloudServicePropertiesArgs

data class CloudServicePropertiesArgs(val allowModelOverride: Output<Boolean>? = null, val configuration: Output<String>? = null, val configurationUrl: Output<String>? = null, val extensionProfile: Output<CloudServiceExtensionProfileArgs>? = null, val networkProfile: Output<CloudServiceNetworkProfileArgs>? = null, val osProfile: Output<CloudServiceOsProfileArgs>? = null, val packageUrl: Output<String>? = null, val roleProfile: Output<CloudServiceRoleProfileArgs>? = null, val startCloudService: Output<Boolean>? = null, val upgradeMode: Output<Either<String, CloudServiceUpgradeMode>>? = null) : ConvertibleToJava<CloudServicePropertiesArgs>

Cloud service properties

Constructors

Link copied to clipboard
constructor(allowModelOverride: Output<Boolean>? = null, configuration: Output<String>? = null, configurationUrl: Output<String>? = null, extensionProfile: Output<CloudServiceExtensionProfileArgs>? = null, networkProfile: Output<CloudServiceNetworkProfileArgs>? = null, osProfile: Output<CloudServiceOsProfileArgs>? = null, packageUrl: Output<String>? = null, roleProfile: Output<CloudServiceRoleProfileArgs>? = null, startCloudService: Output<Boolean>? = null, upgradeMode: Output<Either<String, CloudServiceUpgradeMode>>? = null)

Properties

Link copied to clipboard
val allowModelOverride: Output<Boolean>? = null

(Optional) Indicates whether the role sku properties (roleProfile.roles.sku) specified in the model/template should override the role instance count and vm size specified in the .cscfg and .csdef respectively. The default value is false.

Link copied to clipboard
val configuration: Output<String>? = null

Specifies the XML service configuration (.cscfg) for the cloud service.

Link copied to clipboard
val configurationUrl: Output<String>? = null

Specifies a URL that refers to the location of the service configuration in the Blob service. The service package URL can be Shared Access Signature (SAS) URI from any storage account. This is a write-only property and is not returned in GET calls.

Link copied to clipboard

Describes a cloud service extension profile.

Link copied to clipboard

Network Profile for the cloud service.

Link copied to clipboard

Describes the OS profile for the cloud service.

Link copied to clipboard
val packageUrl: Output<String>? = null

Specifies a URL that refers to the location of the service package in the Blob service. The service package URL can be Shared Access Signature (SAS) URI from any storage account. This is a write-only property and is not returned in GET calls.

Link copied to clipboard

Describes the role profile for the cloud service.

Link copied to clipboard
val startCloudService: Output<Boolean>? = null

(Optional) Indicates whether to start the cloud service immediately after it is created. The default value is true. If false, the service model is still deployed, but the code is not run immediately. Instead, the service is PoweredOff until you call Start, at which time the service will be started. A deployed service still incurs charges, even if it is poweredoff.

Link copied to clipboard
val upgradeMode: Output<Either<String, CloudServiceUpgradeMode>>? = null

Update mode for the cloud service. Role instances are allocated to update domains when the service is deployed. Updates can be initiated manually in each update domain or initiated automatically in all update domains. Possible Values are

Auto

Manual

Simultaneous

If not specified, the default value is Auto. If set to Manual, PUT UpdateDomain must be called to apply the update. If set to Auto, the update is automatically applied to each update domain in sequence.

Functions

Link copied to clipboard
open override fun toJava(): CloudServicePropertiesArgs