Class: Google::Apis::OracledatabaseV1::CloudAccountDetails
- Inherits:
-
Object
- Object
- Google::Apis::OracledatabaseV1::CloudAccountDetails
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/oracledatabase_v1/classes.rb,
lib/google/apis/oracledatabase_v1/representations.rb,
lib/google/apis/oracledatabase_v1/representations.rb
Overview
Details of the OCI Cloud Account.
Instance Attribute Summary collapse
-
#account_creation_uri ⇒ String
Output only.
-
#cloud_account ⇒ String
Output only.
-
#cloud_account_home_region ⇒ String
Output only.
-
#link_existing_account_uri ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CloudAccountDetails
constructor
A new instance of CloudAccountDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CloudAccountDetails
Returns a new instance of CloudAccountDetails.
1040 1041 1042 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1040 def initialize(**args) update!(**args) end |
Instance Attribute Details
#account_creation_uri ⇒ String
Output only. URL to create a new account and link.
Corresponds to the JSON property accountCreationUri
1023 1024 1025 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1023 def account_creation_uri @account_creation_uri end |
#cloud_account ⇒ String
Output only. OCI account name.
Corresponds to the JSON property cloudAccount
1028 1029 1030 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1028 def cloud_account @cloud_account end |
#cloud_account_home_region ⇒ String
Output only. OCI account home region.
Corresponds to the JSON property cloudAccountHomeRegion
1033 1034 1035 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1033 def cloud_account_home_region @cloud_account_home_region end |
#link_existing_account_uri ⇒ String
Output only. URL to link an existing account.
Corresponds to the JSON property linkExistingAccountUri
1038 1039 1040 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1038 def link_existing_account_uri @link_existing_account_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1045 1046 1047 1048 1049 1050 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1045 def update!(**args) @account_creation_uri = args[:account_creation_uri] if args.key?(:account_creation_uri) @cloud_account = args[:cloud_account] if args.key?(:cloud_account) @cloud_account_home_region = args[:cloud_account_home_region] if args.key?(:cloud_account_home_region) @link_existing_account_uri = args[:link_existing_account_uri] if args.key?(:link_existing_account_uri) end |