Help Center> Cloud Container Engine> API Reference> Kubernetes APIs> Namespace> Replacing the Status of a Specified Namespace

Replacing the Status of a Specified Namespace

Function

This API is used to replace the status information of a specified namespace.

When namespace.deletionTimestamp is set to null, phase can be set to Active only.

When namespace.deletionTimestamp is not set to null, phase can be set to Terminating only.

URI

PUT /api/v1/namespaces/{name}/status

Table 1 describes the parameters of this API.

Table 1 Parameter description

Parameter

Mandatory

Description

pretty

No

If 'true', then the output is pretty printed.

name

Yes

Name of the Namespace.

Request

Request parameters:

For the description about request parameters, see Table 2.

Example request:

{ 
   "apiVersion": "v1", 
     "kind": "Namespace", 
     "metadata": { 
         "name": "test", 
         "labels": { 
             "name": "test" 
         } 
     }, 
     "spec": { 
         "finalizers": [ 
             "openshift.com/origin", 
             "kubernetes" 
         ] 
     }, 
     "status": { 
         "phase": "Active" 
     } 
 }

Response

Response parameters:

For the description about response parameters, see Request.

Example response:

{
    "kind": "Namespace",
    "apiVersion": "v1",
    "metadata": {
        "name": "test",
        "selfLink": "/api/v1/namespaces/test/status",
        "uid": "00468bb2-fcef-11e7-9193-fa163ecdc4fd",
        "resourceVersion": "95099",
        "creationTimestamp": "2018-01-19T08:01:49Z",
        "labels": {
            "name": "test"
        },
        "annotations": {
            "test": "woil"
        },
        "enable": true
    },
    "spec": {
        "finalizers": [
            "kubernetes"
        ]
    },
    "status": {
        "phase": "Active"
    }
}

Status Code

Table 2 describes the status code of this API.

Table 2 Status code

Status Code

Description

200

This operation succeeds, and a Namespace resource object is returned.

For the description about error status codes, see Status Code.