Class: Google::Apis::OracledatabaseV1::CloudAccountDetails

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_uriString

Output only. URL to create a new account and link. Corresponds to the JSON property accountCreationUri

Returns:

  • (String)


1023
1024
1025
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1023

def 
  @account_creation_uri
end

#cloud_accountString

Output only. OCI account name. Corresponds to the JSON property cloudAccount

Returns:

  • (String)


1028
1029
1030
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1028

def 
  @cloud_account
end

#cloud_account_home_regionString

Output only. OCI account home region. Corresponds to the JSON property cloudAccountHomeRegion

Returns:

  • (String)


1033
1034
1035
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1033

def 
  @cloud_account_home_region
end

Output only. URL to link an existing account. Corresponds to the JSON property linkExistingAccountUri

Returns:

  • (String)


1038
1039
1040
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1038

def 
  @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