Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 2.17 KB

File metadata and controls

39 lines (30 loc) · 2.17 KB

DistributionMetadata

Properties

Name Type Description Notes
created_date datetime The ISO 8601 creation timestamp. [optional] [readonly]
created_by str Unique name of the identity that created the resource. [optional] [readonly]
created_by_user_id str Unique id of the identity that created the resource. [optional] [readonly]
last_modified_date datetime The ISO 8601 modified timestamp. [optional] [readonly]
last_modified_by str Unique name of the identity that last modified the resource. [optional] [readonly]
last_modified_by_user_id str Unique id of the identity that last modified the resource. [optional] [readonly]
resource_urn str Unique name of the resource. [optional] [readonly]
public_endpoint_ipv4 str IP of the distribution. It has to be included on the domain DNS Zone as A record. [optional] [readonly]
public_endpoint_ipv6 str IP of the distribution, it has to be included on the domain DNS Zone as AAAA record. [optional] [readonly]
state str Represents one of the possible states of the resource. [readonly]
message str A human readable message describing the current state. In case of an error, the message will contain a detailed error message. [optional] [readonly]

Example

from ionoscloud_cdn.models.distribution_metadata import DistributionMetadata

# TODO update the JSON string below
json = "{}"
# create an instance of DistributionMetadata from a JSON string
distribution_metadata_instance = DistributionMetadata.from_json(json)
# print the JSON string representation of the object
print(DistributionMetadata.to_json())

# convert the object into a dict
distribution_metadata_dict = distribution_metadata_instance.to_dict()
# create an instance of DistributionMetadata from a dict
distribution_metadata_from_dict = DistributionMetadata.from_dict(distribution_metadata_dict)

[Back to Model list] [Back to API list] [Back to README]