Class: Google::Apis::OracledatabaseV1::AutonomousDatabaseConnectionUrls

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

The URLs for accessing Oracle Application Express (APEX) and SQL Developer Web with a browser from a Compute instance. https://docs.oracle.com/en-us/iaas/api/

/en/database/20160918/datatypes/AutonomousDatabaseConnectionUrls

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AutonomousDatabaseConnectionUrls

Returns a new instance of AutonomousDatabaseConnectionUrls.



501
502
503
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 501

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#apex_uriString

Output only. Oracle Application Express (APEX) URL. Corresponds to the JSON property apexUri

Returns:

  • (String)


460
461
462
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 460

def apex_uri
  @apex_uri
end

#database_transforms_uriString

Output only. The URL of the Database Transforms for the Autonomous Database. Corresponds to the JSON property databaseTransformsUri

Returns:

  • (String)


465
466
467
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 465

def database_transforms_uri
  @database_transforms_uri
end

#graph_studio_uriString

Output only. The URL of the Graph Studio for the Autonomous Database. Corresponds to the JSON property graphStudioUri

Returns:

  • (String)


470
471
472
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 470

def graph_studio_uri
  @graph_studio_uri
end

#machine_learning_notebook_uriString

Output only. The URL of the Oracle Machine Learning (OML) Notebook for the Autonomous Database. Corresponds to the JSON property machineLearningNotebookUri

Returns:

  • (String)


476
477
478
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 476

def machine_learning_notebook_uri
  @machine_learning_notebook_uri
end

#machine_learning_user_management_uriString

Output only. The URL of Machine Learning user management the Autonomous Database. Corresponds to the JSON property machineLearningUserManagementUri

Returns:

  • (String)


482
483
484
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 482

def machine_learning_user_management_uri
  @machine_learning_user_management_uri
end

#mongo_db_uriString

Output only. The URL of the MongoDB API for the Autonomous Database. Corresponds to the JSON property mongoDbUri

Returns:

  • (String)


487
488
489
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 487

def mongo_db_uri
  @mongo_db_uri
end

#ords_uriString

Output only. The Oracle REST Data Services (ORDS) URL of the Web Access for the Autonomous Database. Corresponds to the JSON property ordsUri

Returns:

  • (String)


493
494
495
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 493

def ords_uri
  @ords_uri
end

#sql_dev_web_uriString

Output only. The URL of the Oracle SQL Developer Web for the Autonomous Database. Corresponds to the JSON property sqlDevWebUri

Returns:

  • (String)


499
500
501
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 499

def sql_dev_web_uri
  @sql_dev_web_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



506
507
508
509
510
511
512
513
514
515
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 506

def update!(**args)
  @apex_uri = args[:apex_uri] if args.key?(:apex_uri)
  @database_transforms_uri = args[:database_transforms_uri] if args.key?(:database_transforms_uri)
  @graph_studio_uri = args[:graph_studio_uri] if args.key?(:graph_studio_uri)
  @machine_learning_notebook_uri = args[:machine_learning_notebook_uri] if args.key?(:machine_learning_notebook_uri)
  @machine_learning_user_management_uri = args[:machine_learning_user_management_uri] if args.key?(:machine_learning_user_management_uri)
  @mongo_db_uri = args[:mongo_db_uri] if args.key?(:mongo_db_uri)
  @ords_uri = args[:ords_uri] if args.key?(:ords_uri)
  @sql_dev_web_uri = args[:sql_dev_web_uri] if args.key?(:sql_dev_web_uri)
end