AgreementRecord¶
- 
class oci.wlms.models.AgreementRecord(**kwargs)¶
- Bases: - object- A record showing that the terms of use agreement for the WebLogic management service was accepted for a domain. - Methods - __init__(**kwargs)- Initializes a new AgreementRecord object with values from keyword arguments. - Attributes - agreement_signature- [Required] Gets the agreement_signature of this AgreementRecord. - agreement_uuid- [Required] Gets the agreement_uuid of this AgreementRecord. - time_accepted- [Required] Gets the time_accepted of this AgreementRecord. - 
__init__(**kwargs)¶
- Initializes a new AgreementRecord object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - time_accepted (datetime) – The value to assign to the time_accepted property of this AgreementRecord.
- agreement_uuid (str) – The value to assign to the agreement_uuid property of this AgreementRecord.
- agreement_signature (str) – The value to assign to the agreement_signature property of this AgreementRecord.
 
 - 
agreement_signature¶
- [Required] Gets the agreement_signature of this AgreementRecord. The agreement signature. - Returns: - The agreement_signature of this AgreementRecord. - Return type: - str 
 - 
agreement_uuid¶
- [Required] Gets the agreement_uuid of this AgreementRecord. The ID of the accepted agreement. - Returns: - The agreement_uuid of this AgreementRecord. - Return type: - str 
 - 
time_accepted¶
- [Required] Gets the time_accepted of this AgreementRecord. The accepted time for the agreement record. - Returns: - The time_accepted of this AgreementRecord. - Return type: - datetime 
 
-