openstack.dns.v2.zone_share
updated: 2023-10-04 13:54
openstack.dns.v2.zone_share
The ZoneShare Class
The DNS
class inherits from Resource
.
-
class openstack.dns.v2.zone_share.ZoneShare(_synchronized=False, connection=None, **attrs)
DNS ZONE Share Resource
The base resource
- Parameters:
_synchronized (bool) – This is not intended to be used directly. See
new()
and
existing()
.
connection (openstack.connection.Connection) – Reference to the Connection being used. Defaults to None to allow
Resource objects to be used without an active Connection, such as
in unit tests. Use of self._connection
in Resource code should
protect itself with a check for None.
-
resources_key = 'shared_zones'
Plural form of key for resource.
-
base_path = '/zones/%(zone_id)s/shares'
The base part of the URI for this resource.
-
allow_create = True
Allow create operation for this resource.
-
allow_delete = True
Allow delete operation for this resource.
-
allow_fetch = True
Allow get operation for this resource.
-
allow_list = True
Allow list operation for this resource.
-
created_at
Timestamp when the share was created.
-
updated_at
Timestamp when the member was last updated.
-
project_id
The project ID that owns the share.
-
target_project_id
The target project ID that the zone is shared with.
-
zone_id
The ID of the zone being shared.
updated: 2023-10-04 13:54