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.



1253
1254
1255
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1253

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)


1236
1237
1238
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1236

def 
  @account_creation_uri
end

#cloud_accountString

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

Returns:

  • (String)


1241
1242
1243
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1241

def 
  @cloud_account
end

#cloud_account_home_regionString

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

Returns:

  • (String)


1246
1247
1248
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1246

def 
  @cloud_account_home_region
end

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

Returns:

  • (String)


1251
1252
1253
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1251

def 
  @link_existing_account_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1258
1259
1260
1261
1262
1263
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 1258

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