RevisionProperties Class

Revision resource specific properties.

Constructor

RevisionProperties(*args: Any, **kwargs: Any)

Variables

Name Description
created_time

Timestamp describing when the revision was created by controller.

last_active_time

Timestamp describing when the revision was last active. Only meaningful when revision is inactive.

fqdn
str

Fully qualified domain name of the revision.

template

Container App Revision Template with all possible settings and the defaults if user did not provide them. The defaults are populated as they were at the creation time.

active

Boolean describing if the Revision is Active.

replicas
int

Number of pods currently running for this revision.

traffic_weight
int

Traffic weight assigned to this revision.

provisioning_error
str

Optional Field - Platform Error Message.

health_state

Current health State of the revision. Known values are: "Healthy", "Unhealthy", and "None".

provisioning_state

Current provisioning State of the revision. Known values are: "Provisioning", "Provisioned", "Failed", "Deprovisioning", and "Deprovisioned".

running_state

Current running state of the revision. Known values are: "Running", "Processing", "Stopped", "Degraded", "Failed", and "Unknown".

Attributes

active

Boolean describing if the Revision is Active.

active: bool | None

created_time

Timestamp describing when the revision was created by controller.

created_time: datetime | None

fqdn

Fully qualified domain name of the revision.

fqdn: str | None

health_state

"Healthy", "Unhealthy", and "None".

health_state: str | _models.RevisionHealthState | None

last_active_time

Timestamp describing when the revision was last active. Only meaningful when revision is inactive.

last_active_time: datetime | None

provisioning_error

Optional Field - Platform Error Message.

provisioning_error: str | None

provisioning_state

"Provisioning", "Provisioned", "Failed", "Deprovisioning", and "Deprovisioned".

provisioning_state: str | _models.RevisionProvisioningState | None

replicas

Number of pods currently running for this revision.

replicas: int | None

running_state

"Running", "Processing", "Stopped", "Degraded", "Failed", and "Unknown".

running_state: str | _models.RevisionRunningState | None

template

Container App Revision Template with all possible settings and the defaults if user did not provide them. The defaults are populated as they were at the creation time.

template: _models.Template | None

traffic_weight

Traffic weight assigned to this revision.

traffic_weight: int | None