Class: Google::Cloud::OracleDatabase::V1::AutonomousDatabaseProperties

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb

Overview

The properties of an Autonomous Database.

Defined Under Namespace

Modules: DataSafeState, DatabaseEdition, DatabaseManagementState, LicenseType, LocalDisasterRecoveryType, MaintenanceScheduleType, OpenMode, PermissionLevel, RefreshableMode, RefreshableState, Role

Instance Attribute Summary collapse

Instance Attribute Details

#actual_used_data_storage_size_tb::Float (readonly)

Returns Output only. The amount of storage currently being used for user and system data, in terabytes.

Returns:

  • (::Float)

    Output only. The amount of storage currently being used for user and system data, in terabytes.



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#allocated_storage_size_tb::Float (readonly)

Returns Output only. The amount of storage currently allocated for the database tables and billed for, rounded up in terabytes.

Returns:

  • (::Float)

    Output only. The amount of storage currently allocated for the database tables and billed for, rounded up in terabytes.



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#apex_details::Google::Cloud::OracleDatabase::V1::AutonomousDatabaseApex (readonly)

Returns Output only. The details for the Oracle APEX Application Development.

Returns:



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#are_primary_allowlisted_ips_used::Boolean (readonly)

Returns Output only. This field indicates the status of Data Guard and Access control for the Autonomous Database. The field's value is null if Data Guard is disabled or Access Control is disabled. The field's value is TRUE if both Data Guard and Access Control are enabled, and the Autonomous Database is using primary IP access control list (ACL) for standby. The field's value is FALSE if both Data Guard and Access Control are enabled, and the Autonomous Database is using a different IP access control list (ACL) for standby compared to primary.

Returns:

  • (::Boolean)

    Output only. This field indicates the status of Data Guard and Access control for the Autonomous Database. The field's value is null if Data Guard is disabled or Access Control is disabled. The field's value is TRUE if both Data Guard and Access Control are enabled, and the Autonomous Database is using primary IP access control list (ACL) for standby. The field's value is FALSE if both Data Guard and Access Control are enabled, and the Autonomous Database is using a different IP access control list (ACL) for standby compared to primary.



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#autonomous_container_database_id::String (readonly)

Returns Output only. The Autonomous Container Database OCID.

Returns:

  • (::String)

    Output only. The Autonomous Container Database OCID.



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#available_upgrade_versions::Array<::String> (readonly)

Returns Output only. The list of available Oracle Database upgrade versions for an Autonomous Database.

Returns:

  • (::Array<::String>)

    Output only. The list of available Oracle Database upgrade versions for an Autonomous Database.



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#backup_retention_period_days::Integer

Returns Optional. The retention period for the Autonomous Database. This field is specified in days, can range from 1 day to 60 days, and has a default value of 60 days.

Returns:

  • (::Integer)

    Optional. The retention period for the Autonomous Database. This field is specified in days, can range from 1 day to 60 days, and has a default value of 60 days.



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#character_set::String

Returns Optional. The character set for the Autonomous Database. The default is AL32UTF8.

Returns:

  • (::String)

    Optional. The character set for the Autonomous Database. The default is AL32UTF8.



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#compute_count::Float

Returns Optional. The number of compute servers for the Autonomous Database.

Returns:

  • (::Float)

    Optional. The number of compute servers for the Autonomous Database.



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#connection_strings::Google::Cloud::OracleDatabase::V1::AutonomousDatabaseConnectionStrings (readonly)

Returns Output only. The connection strings used to connect to an Autonomous Database.

Returns:



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#connection_urls::Google::Cloud::OracleDatabase::V1::AutonomousDatabaseConnectionUrls (readonly)

Returns Output only. The Oracle Connection URLs for an Autonomous Database.

Returns:



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#cpu_core_count::Integer

Returns Optional. The number of CPU cores to be made available to the database.

Returns:

  • (::Integer)

    Optional. The number of CPU cores to be made available to the database.



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#customer_contacts::Array<::Google::Cloud::OracleDatabase::V1::CustomerContact>

Returns Optional. The list of customer contacts.

Returns:



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#data_safe_state::Google::Cloud::OracleDatabase::V1::AutonomousDatabaseProperties::DataSafeState (readonly)

Returns Output only. The current state of the Data Safe registration for the Autonomous Database.

Returns:



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#data_storage_size_gb::Integer

Returns Optional. The size of the data stored in the database, in gigabytes.

Returns:

  • (::Integer)

    Optional. The size of the data stored in the database, in gigabytes.



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#data_storage_size_tb::Integer

Returns Optional. The size of the data stored in the database, in terabytes.

Returns:

  • (::Integer)

    Optional. The size of the data stored in the database, in terabytes.



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#database_management_state::Google::Cloud::OracleDatabase::V1::AutonomousDatabaseProperties::DatabaseManagementState (readonly)

Returns Output only. The current state of database management for the Autonomous Database.

Returns:



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#db_edition::Google::Cloud::OracleDatabase::V1::AutonomousDatabaseProperties::DatabaseEdition

Returns Optional. The edition of the Autonomous Databases.

Returns:



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#db_version::String

Returns Optional. The Oracle Database version for the Autonomous Database.

Returns:

  • (::String)

    Optional. The Oracle Database version for the Autonomous Database.



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#db_workload::Google::Cloud::OracleDatabase::V1::DBWorkload

Returns Required. The workload type of the Autonomous Database.

Returns:



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#failed_data_recovery_duration::Google::Protobuf::Duration (readonly)

Returns Output only. This field indicates the number of seconds of data loss during a Data Guard failover.

Returns:



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#is_auto_scaling_enabled::Boolean

Returns Optional. This field indicates if auto scaling is enabled for the Autonomous Database CPU core count.

Returns:

  • (::Boolean)

    Optional. This field indicates if auto scaling is enabled for the Autonomous Database CPU core count.



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#is_local_data_guard_enabled::Boolean (readonly)

Returns Output only. This field indicates whether the Autonomous Database has local (in-region) Data Guard enabled.

Returns:

  • (::Boolean)

    Output only. This field indicates whether the Autonomous Database has local (in-region) Data Guard enabled.



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#is_storage_auto_scaling_enabled::Boolean

Returns Optional. This field indicates if auto scaling is enabled for the Autonomous Database storage.

Returns:

  • (::Boolean)

    Optional. This field indicates if auto scaling is enabled for the Autonomous Database storage.



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#license_type::Google::Cloud::OracleDatabase::V1::AutonomousDatabaseProperties::LicenseType

Returns Required. The license type used for the Autonomous Database.

Returns:



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#lifecycle_details::String (readonly)

Returns Output only. The details of the current lifestyle state of the Autonomous Database.

Returns:

  • (::String)

    Output only. The details of the current lifestyle state of the Autonomous Database.



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#local_adg_auto_failover_max_data_loss_limit::Integer (readonly)

Returns Output only. This field indicates the maximum data loss limit for an Autonomous Database, in seconds.

Returns:

  • (::Integer)

    Output only. This field indicates the maximum data loss limit for an Autonomous Database, in seconds.



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#local_disaster_recovery_type::Google::Cloud::OracleDatabase::V1::AutonomousDatabaseProperties::LocalDisasterRecoveryType (readonly)

Returns Output only. This field indicates the local disaster recovery (DR) type of an Autonomous Database.

Returns:



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#local_standby_db::Google::Cloud::OracleDatabase::V1::AutonomousDatabaseStandbySummary (readonly)

Returns Output only. The details of the Autonomous Data Guard standby database.

Returns:



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#maintenance_begin_time::Google::Protobuf::Timestamp (readonly)

Returns Output only. The date and time when maintenance will begin.

Returns:



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#maintenance_end_time::Google::Protobuf::Timestamp (readonly)

Returns Output only. The date and time when maintenance will end.

Returns:



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#maintenance_schedule_type::Google::Cloud::OracleDatabase::V1::AutonomousDatabaseProperties::MaintenanceScheduleType

Returns Optional. The maintenance schedule of the Autonomous Database.

Returns:



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#memory_per_oracle_compute_unit_gbs::Integer (readonly)

Returns Output only. The amount of memory enabled per ECPU, in gigabytes.

Returns:

  • (::Integer)

    Output only. The amount of memory enabled per ECPU, in gigabytes.



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#memory_table_gbs::Integer (readonly)

Returns Output only. The memory assigned to in-memory tables in an Autonomous Database.

Returns:

  • (::Integer)

    Output only. The memory assigned to in-memory tables in an Autonomous Database.



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#mtls_connection_required::Boolean

Returns Optional. This field specifies if the Autonomous Database requires mTLS connections.

Returns:

  • (::Boolean)

    Optional. This field specifies if the Autonomous Database requires mTLS connections.



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#n_character_set::String

Returns Optional. The national character set for the Autonomous Database. The default is AL16UTF16.

Returns:

  • (::String)

    Optional. The national character set for the Autonomous Database. The default is AL16UTF16.



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#next_long_term_backup_time::Google::Protobuf::Timestamp (readonly)

Returns Output only. The long term backup schedule of the Autonomous Database.

Returns:



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#oci_url::String (readonly)

Returns Output only. The Oracle Cloud Infrastructure link for the Autonomous Database.

Returns:

  • (::String)

    Output only. The Oracle Cloud Infrastructure link for the Autonomous Database.



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#ocid::String (readonly)

Returns Output only. OCID of the Autonomous Database. https://docs.oracle.com/en-us/iaas/Content/General/Concepts/identifiers.htm#Oracle.

Returns:



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#open_mode::Google::Cloud::OracleDatabase::V1::AutonomousDatabaseProperties::OpenMode (readonly)

Returns Output only. This field indicates the current mode of the Autonomous Database.

Returns:



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#operations_insights_state::Google::Cloud::OracleDatabase::V1::OperationsInsightsState (readonly)

Returns Output only. This field indicates the state of Operations Insights for the Autonomous Database.

Returns:



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#peer_db_ids::Array<::String> (readonly)

Returns Output only. The list of OCIDs of standby databases located in Autonomous Data Guard remote regions that are associated with the source database.

Returns:

  • (::Array<::String>)

    Output only. The list of OCIDs of standby databases located in Autonomous Data Guard remote regions that are associated with the source database.



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#permission_level::Google::Cloud::OracleDatabase::V1::AutonomousDatabaseProperties::PermissionLevel (readonly)

Returns Output only. The permission level of the Autonomous Database.

Returns:



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#private_endpoint::String (readonly)

Returns Output only. The private endpoint for the Autonomous Database.

Returns:

  • (::String)

    Output only. The private endpoint for the Autonomous Database.



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#private_endpoint_ip::String

Returns Optional. The private endpoint IP address for the Autonomous Database.

Returns:

  • (::String)

    Optional. The private endpoint IP address for the Autonomous Database.



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#private_endpoint_label::String

Returns Optional. The private endpoint label for the Autonomous Database.

Returns:

  • (::String)

    Optional. The private endpoint label for the Autonomous Database.



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#refreshable_mode::Google::Cloud::OracleDatabase::V1::AutonomousDatabaseProperties::RefreshableMode (readonly)

Returns Output only. The refresh mode of the cloned Autonomous Database.

Returns:



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#refreshable_state::Google::Cloud::OracleDatabase::V1::AutonomousDatabaseProperties::RefreshableState (readonly)

Returns Output only. The refresh State of the clone.

Returns:



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#role::Google::Cloud::OracleDatabase::V1::AutonomousDatabaseProperties::Role (readonly)

Returns Output only. The Data Guard role of the Autonomous Database.

Returns:



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#scheduled_operation_details::Array<::Google::Cloud::OracleDatabase::V1::ScheduledOperationDetails> (readonly)

Returns Output only. The list and details of the scheduled operations of the Autonomous Database.

Returns:



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#secret_id::String

Returns Optional. The ID of the Oracle Cloud Infrastructure vault secret.

Returns:

  • (::String)

    Optional. The ID of the Oracle Cloud Infrastructure vault secret.



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#sql_web_developer_url::String (readonly)

Returns Output only. The SQL Web Developer URL for the Autonomous Database.

Returns:

  • (::String)

    Output only. The SQL Web Developer URL for the Autonomous Database.



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#state::Google::Cloud::OracleDatabase::V1::State (readonly)

Returns Output only. The current lifecycle state of the Autonomous Database.

Returns:



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#supported_clone_regions::Array<::String> (readonly)

Returns Output only. The list of available regions that can be used to create a clone for the Autonomous Database.

Returns:

  • (::Array<::String>)

    Output only. The list of available regions that can be used to create a clone for the Autonomous Database.



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#total_auto_backup_storage_size_gbs::Float (readonly)

Returns Output only. The storage space used by automatic backups of Autonomous Database, in gigabytes.

Returns:

  • (::Float)

    Output only. The storage space used by automatic backups of Autonomous Database, in gigabytes.



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#used_data_storage_size_tbs::Integer (readonly)

Returns Output only. The storage space used by Autonomous Database, in gigabytes.

Returns:

  • (::Integer)

    Output only. The storage space used by Autonomous Database, in gigabytes.



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end

#vault_id::String

Returns Optional. The ID of the Oracle Cloud Infrastructure vault.

Returns:

  • (::String)

    Optional. The ID of the Oracle Cloud Infrastructure vault.



283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 283

class AutonomousDatabaseProperties
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The editions available for the Autonomous Database.
  module DatabaseEdition
    # Default unspecified value.
    DATABASE_EDITION_UNSPECIFIED = 0

    # Standard Database Edition
    STANDARD_EDITION = 1

    # Enterprise Database Edition
    ENTERPRISE_EDITION = 2
  end

  # The license types available for the Autonomous Database.
  module LicenseType
    # Unspecified
    LICENSE_TYPE_UNSPECIFIED = 0

    # License included part of offer
    LICENSE_INCLUDED = 1

    # Bring your own license
    BRING_YOUR_OWN_LICENSE = 2
  end

  # The available maintenance schedules for the Autonomous Database.
  module MaintenanceScheduleType
    # Default unspecified value.
    MAINTENANCE_SCHEDULE_TYPE_UNSPECIFIED = 0

    # An EARLY maintenance schedule patches the database before
    # the regular scheduled maintenance.
    EARLY = 1

    # A REGULAR maintenance schedule follows the normal maintenance cycle.
    REGULAR = 2
  end

  # The types of local disaster recovery available for an Autonomous Database.
  module LocalDisasterRecoveryType
    # Default unspecified value.
    LOCAL_DISASTER_RECOVERY_TYPE_UNSPECIFIED = 0

    # Autonomous Data Guard recovery.
    ADG = 1

    # Backup based recovery.
    BACKUP_BASED = 2
  end

  # Varies states of the Data Safe registration for the Autonomous Database.
  module DataSafeState
    # Default unspecified value.
    DATA_SAFE_STATE_UNSPECIFIED = 0

    # Registering data safe state.
    REGISTERING = 1

    # Registered data safe state.
    REGISTERED = 2

    # Deregistering data safe state.
    DEREGISTERING = 3

    # Not registered data safe state.
    NOT_REGISTERED = 4

    # Failed data safe state.
    FAILED = 5
  end

  # The different states of database management for an Autonomous Database.
  module DatabaseManagementState
    # Default unspecified value.
    DATABASE_MANAGEMENT_STATE_UNSPECIFIED = 0

    # Enabling Database Management state
    ENABLING = 1

    # Enabled Database Management state
    ENABLED = 2

    # Disabling Database Management state
    DISABLING = 3

    # Not Enabled Database Management state
    NOT_ENABLED = 4

    # Failed enabling Database Management state
    FAILED_ENABLING = 5

    # Failed disabling Database Management state
    FAILED_DISABLING = 6
  end

  # This field indicates the modes of an Autonomous Database.
  module OpenMode
    # Default unspecified value.
    OPEN_MODE_UNSPECIFIED = 0

    # Read Only Mode
    READ_ONLY = 1

    # Read Write Mode
    READ_WRITE = 2
  end

  # The types of permission levels for an Autonomous Database.
  module PermissionLevel
    # Default unspecified value.
    PERMISSION_LEVEL_UNSPECIFIED = 0

    # Restricted mode allows access only by admin users.
    RESTRICTED = 1

    # Normal access.
    UNRESTRICTED = 2
  end

  # The refresh mode of the cloned Autonomous Database.
  module RefreshableMode
    # The default unspecified value.
    REFRESHABLE_MODE_UNSPECIFIED = 0

    # AUTOMATIC indicates that the cloned database is automatically
    # refreshed with data from the source Autonomous Database.
    AUTOMATIC = 1

    # MANUAL indicates that the cloned database is manually refreshed with
    # data from the source Autonomous Database.
    MANUAL = 2
  end

  # The refresh state of the cloned Autonomous Database.
  module RefreshableState
    # Default unspecified value.
    REFRESHABLE_STATE_UNSPECIFIED = 0

    # Refreshing
    REFRESHING = 1

    # Not refreshed
    NOT_REFRESHING = 2
  end

  # The Data Guard role of the Autonomous Database.
  module Role
    # Default unspecified value.
    ROLE_UNSPECIFIED = 0

    # Primary role
    PRIMARY = 1

    # Standby role
    STANDBY = 2

    # Disabled standby role
    DISABLED_STANDBY = 3

    # Backup copy role
    BACKUP_COPY = 4

    # Snapshot standby role
    SNAPSHOT_STANDBY = 5
  end
end