Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.55 KB

File metadata and controls

41 lines (32 loc) · 1.55 KB

SyntheticCredential

Properties

Name Type Description Notes
application_labels List[str] [optional] [readonly]
applications List[str] [optional]
created_at int [optional] [readonly]
created_by str [optional]
credential_name str
credential_value str
mobile_app_labels List[str] [optional] [readonly]
mobile_apps List[str] [optional]
modified_at int [optional] [readonly]
modified_by str [optional]
rbac_tags List[ApiTag] [optional]
website_labels List[str] [optional] [readonly]
websites List[str] [optional]

Example

from instana_client.models.synthetic_credential import SyntheticCredential

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

# convert the object into a dict
synthetic_credential_dict = synthetic_credential_instance.to_dict()
# create an instance of SyntheticCredential from a dict
synthetic_credential_from_dict = SyntheticCredential.from_dict(synthetic_credential_dict)

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