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.



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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.



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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

#allowlisted_ips::Array<::String>

Returns Optional. Immutable. The list of allowlisted IP addresses for the Autonomous Database.

Returns:

  • (::Array<::String>)

    Optional. Immutable. The list of allowlisted IP addresses for the Autonomous Database.



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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:



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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.



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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.



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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.



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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. Immutable. 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. Immutable. 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.



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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. Immutable. The character set for the Autonomous Database. The default is AL32UTF8.

Returns:

  • (::String)

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



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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. Immutable. The number of compute servers for the Autonomous Database.

Returns:

  • (::Float)

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



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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:



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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:



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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. Immutable. The number of CPU cores to be made available to the database.

Returns:

  • (::Integer)

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



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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. Immutable. The list of customer contacts.

Returns:



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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_guard_role_changed_time::Google::Protobuf::Timestamp (readonly)

Returns Output only. The date and time the Autonomous Data Guard role was changed for the standby Autonomous Database.

Returns:

  • (::Google::Protobuf::Timestamp)

    Output only. The date and time the Autonomous Data Guard role was changed for the standby Autonomous Database.



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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:



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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. Immutable. The size of the data stored in the database, in gigabytes.

Returns:

  • (::Integer)

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



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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. Immutable. The size of the data stored in the database, in terabytes.

Returns:

  • (::Integer)

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



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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:



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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. Immutable. The edition of the Autonomous Databases.

Returns:



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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. Immutable. The Oracle Database version for the Autonomous Database.

Returns:

  • (::String)

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



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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. Immutable. The workload type of the Autonomous Database.

Returns:



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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

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

Returns Output only. The date and time the Disaster Recovery role was changed for the standby Autonomous Database.

Returns:



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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

#encryption_key::Google::Cloud::OracleDatabase::V1::EncryptionKey

Returns Optional. The encryption key used to encrypt the Autonomous Database. Updating this field will add a new entry in the encryption_key_history_entries field with the former version.

Returns:



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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

#encryption_key_history_entries::Array<::Google::Cloud::OracleDatabase::V1::EncryptionKeyHistoryEntry> (readonly)

Returns Output only. The history of the encryption keys used to encrypt the Autonomous Database.

Returns:



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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:



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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. Immutable. This field indicates if auto scaling is enabled for the Autonomous Database CPU core count.

Returns:

  • (::Boolean)

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



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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)

Deprecated.

This field is deprecated and may be removed in the next major version update.

Returns Output only. Deprecated: Please use local_data_guard_enabled instead. This field indicates whether the Autonomous Database has local (in-region) Data Guard enabled.

Returns:

  • (::Boolean)

    Output only. Deprecated: Please use local_data_guard_enabled instead. This field indicates whether the Autonomous Database has local (in-region) Data Guard enabled.



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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. Immutable. This field indicates if auto scaling is enabled for the Autonomous Database storage.

Returns:

  • (::Boolean)

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



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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. Immutable. The license type used for the Autonomous Database.

Returns:



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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.



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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)

Deprecated.

This field is deprecated and may be removed in the next major version update.

Returns Output only. Deprecated: Please use local_adg_auto_failover_max_data_loss_limit_duration instead. This field indicates the maximum data loss limit for an Autonomous Database, in seconds.

Returns:

  • (::Integer)

    Output only. Deprecated: Please use local_adg_auto_failover_max_data_loss_limit_duration instead. This field indicates the maximum data loss limit for an Autonomous Database, in seconds.



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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_duration::Integer

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

Returns:

  • (::Integer)

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



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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_data_guard_enabled::Boolean

Returns Optional. Indicates whether the Autonomous Database has a local (in-region) standby database. Not applicable to cross-region Data Guard or dedicated Exadata infrastructure.

Returns:

  • (::Boolean)

    Optional. Indicates whether the Autonomous Database has a local (in-region) standby database. Not applicable to cross-region Data Guard or dedicated Exadata infrastructure.



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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:



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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:



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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:



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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:



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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. Immutable. The maintenance schedule of the Autonomous Database.

Returns:



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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.



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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.



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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. Immutable. This field specifies if the Autonomous Database requires mTLS connections.

Returns:

  • (::Boolean)

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



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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. Immutable. The national character set for the Autonomous Database. The default is AL16UTF16.

Returns:

  • (::String)

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



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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:



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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.



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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:



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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:



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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:



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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.



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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:



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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.



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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. Immutable. The private endpoint IP address for the Autonomous Database.

Returns:

  • (::String)

    Optional. Immutable. The private endpoint IP address for the Autonomous Database.



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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. Immutable. The private endpoint label for the Autonomous Database.

Returns:

  • (::String)

    Optional. Immutable. The private endpoint label for the Autonomous Database.



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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:



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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:



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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:



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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:



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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. Immutable. The ID of the Oracle Cloud Infrastructure vault secret.

Returns:

  • (::String)

    Optional. Immutable. The ID of the Oracle Cloud Infrastructure vault secret.



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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

#service_agent_email::String (readonly)

Returns Output only. An Oracle-managed Google Cloud service account on which customers can grant roles to access resources in the customer project.

Returns:

  • (::String)

    Output only. An Oracle-managed Google Cloud service account on which customers can grant roles to access resources in the customer project.



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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.



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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:



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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.



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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.



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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.



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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. Immutable. The ID of the Oracle Cloud Infrastructure vault.

Returns:

  • (::String)

    Optional. Immutable. The ID of the Oracle Cloud Infrastructure vault.



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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'proto_docs/google/cloud/oracledatabase/v1/autonomous_database.rb', line 379

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

    # Local disaster recovery is not available.
    NOT_AVAILABLE = 3
  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