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.
1306 1307 1308 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1306 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
1289 1290 1291 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1289 def account_creation_uri @account_creation_uri end |
#cloud_account ⇒ String
Output only. OCI account name.
Corresponds to the JSON property cloudAccount
1294 1295 1296 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1294 def cloud_account @cloud_account end |
#cloud_account_home_region ⇒ String
Output only. OCI account home region.
Corresponds to the JSON property cloudAccountHomeRegion
1299 1300 1301 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1299 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
1304 1305 1306 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1304 def link_existing_account_uri @link_existing_account_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1311 1312 1313 1314 1315 1316 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1311 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 |