Openstack Network Rbac Policies
Operations Summary
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/openstack-network-rbac-policies/ |
List network RBAC policies |
| GET | /api/openstack-network-rbac-policies/{uuid}/ |
Get network RBAC policy details |
| POST | /api/openstack-network-rbac-policies/ |
Create RBAC policy |
| PUT | /api/openstack-network-rbac-policies/{uuid}/ |
Update |
| PATCH | /api/openstack-network-rbac-policies/{uuid}/ |
Partial Update |
| DELETE | /api/openstack-network-rbac-policies/{uuid}/ |
Delete RBAC policy |
List network RBAC policies
Get a list of network RBAC policies.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 | |
- API Source:
openstack_network_rbac_policies_list
1 2 3 4 5 6 7 8 9 10 | |
| Name | Type | Description |
|---|---|---|
network |
string | Network URL |
network_uuid |
string (uuid) | Network UUID |
page |
integer | A page number within the paginated result set. |
page_size |
integer | Number of results to return per page. |
policy_type |
string | Type of access granted - either shared access or external network access Enum: access_as_external, access_as_shared |
target_tenant |
string | Target tenant URL |
target_tenant_uuid |
string (uuid) | Target tenant UUID |
tenant |
string | Tenant URL |
tenant_uuid |
string (uuid) | Tenant UUID |
200 -
The response body is an array of objects, where each object has the following structure:
| Field | Type | Description |
|---|---|---|
url |
string (uri) | |
uuid |
string (uuid) | |
network |
string (uri) | |
network_name |
string | |
target_tenant |
string (uri) | |
target_tenant_name |
string | |
backend_id |
string | |
policy_type |
any | Type of access granted - either shared access or external network access |
created |
string (date-time) |
Get network RBAC policy details
Retrieve details of a specific network RBAC policy.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
openstack_network_rbac_policies_retrieve
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
200 -
| Field | Type | Description |
|---|---|---|
url |
string (uri) | |
uuid |
string (uuid) | |
network |
string (uri) | |
network_name |
string | |
target_tenant |
string (uri) | |
target_tenant_name |
string | |
backend_id |
string | |
policy_type |
any | Type of access granted - either shared access or external network access |
created |
string (date-time) |
Create RBAC policy
Create RBAC policy for the network
1 2 3 4 5 6 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | |
- Model Source:
NetworkRBACPolicyRequest - API Source:
openstack_network_rbac_policies_create
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | |
| Field | Type | Required | Description |
|---|---|---|---|
network |
string (uri) | ✓ | |
target_tenant |
string (uri) | ✓ | |
policy_type |
any | Type of access granted - either shared access or external network access Constraints: default: access_as_shared |
201 -
| Field | Type | Description |
|---|---|---|
url |
string (uri) | |
uuid |
string (uuid) | |
network |
string (uri) | |
network_name |
string | |
target_tenant |
string (uri) | |
target_tenant_name |
string | |
backend_id |
string | |
policy_type |
any | Type of access granted - either shared access or external network access |
created |
string (date-time) |
Update
1 2 3 4 5 6 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | |
- Model Source:
NetworkRBACPolicyRequest - API Source:
openstack_network_rbac_policies_update
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required | Description |
|---|---|---|---|
network |
string (uri) | ✓ | |
target_tenant |
string (uri) | ✓ | |
policy_type |
any | Type of access granted - either shared access or external network access Constraints: default: access_as_shared |
200 -
| Field | Type | Description |
|---|---|---|
url |
string (uri) | |
uuid |
string (uuid) | |
network |
string (uri) | |
network_name |
string | |
target_tenant |
string (uri) | |
target_tenant_name |
string | |
backend_id |
string | |
policy_type |
any | Type of access granted - either shared access or external network access |
created |
string (date-time) |
Partial Update
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
- Model Source:
PatchedNetworkRBACPolicyRequest - API Source:
openstack_network_rbac_policies_partial_update
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required | Description |
|---|---|---|---|
network |
string (uri) | ||
target_tenant |
string (uri) | ||
policy_type |
any | Type of access granted - either shared access or external network access Constraints: default: access_as_shared |
200 -
| Field | Type | Description |
|---|---|---|
url |
string (uri) | |
uuid |
string (uuid) | |
network |
string (uri) | |
network_name |
string | |
target_tenant |
string (uri) | |
target_tenant_name |
string | |
backend_id |
string | |
policy_type |
any | Type of access granted - either shared access or external network access |
created |
string (date-time) |
Delete RBAC policy
Delete RBAC policy for the network
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
openstack_network_rbac_policies_destroy
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
204 - No response body