Class: Google::Apis::MigrationcenterV1alpha1::DatabaseDeploymentDetails
- Inherits:
-
Object
- Object
- Google::Apis::MigrationcenterV1alpha1::DatabaseDeploymentDetails
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/migrationcenter_v1alpha1/classes.rb,
lib/google/apis/migrationcenter_v1alpha1/representations.rb,
lib/google/apis/migrationcenter_v1alpha1/representations.rb
Overview
The details of a database deployment asset.
Instance Attribute Summary collapse
-
#aggregated_stats ⇒ Google::Apis::MigrationcenterV1alpha1::DatabaseDeploymentDetailsAggregatedStats
Aggregated stats for the database deployment.
-
#aws_rds ⇒ Google::Apis::MigrationcenterV1alpha1::AwsRds
Specific details for an AWS RDS database deployment.
-
#edition ⇒ String
The database deployment edition.
-
#generated_id ⇒ String
The database deployment generated ID.
-
#manual_unique_id ⇒ String
A manual unique ID set by the user.
-
#mysql ⇒ Google::Apis::MigrationcenterV1alpha1::MysqlDatabaseDeployment
Specific details for a Mysql database deployment.
-
#postgresql ⇒ Google::Apis::MigrationcenterV1alpha1::PostgreSqlDatabaseDeployment
Specific details for a PostgreSQL database deployment.
-
#sql_server ⇒ Google::Apis::MigrationcenterV1alpha1::SqlServerDatabaseDeployment
Specific details for a Microsoft SQL Server database deployment.
-
#topology ⇒ Google::Apis::MigrationcenterV1alpha1::DatabaseDeploymentTopology
Details of database deployment's topology.
-
#version ⇒ String
The database deployment version.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DatabaseDeploymentDetails
constructor
A new instance of DatabaseDeploymentDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DatabaseDeploymentDetails
Returns a new instance of DatabaseDeploymentDetails.
2500 2501 2502 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2500 def initialize(**args) update!(**args) end |
Instance Attribute Details
#aggregated_stats ⇒ Google::Apis::MigrationcenterV1alpha1::DatabaseDeploymentDetailsAggregatedStats
Aggregated stats for the database deployment.
Corresponds to the JSON property aggregatedStats
2453 2454 2455 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2453 def aggregated_stats @aggregated_stats end |
#aws_rds ⇒ Google::Apis::MigrationcenterV1alpha1::AwsRds
Specific details for an AWS RDS database deployment.
Corresponds to the JSON property awsRds
2458 2459 2460 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2458 def aws_rds @aws_rds end |
#edition ⇒ String
The database deployment edition.
Corresponds to the JSON property edition
2463 2464 2465 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2463 def edition @edition end |
#generated_id ⇒ String
The database deployment generated ID.
Corresponds to the JSON property generatedId
2468 2469 2470 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2468 def generated_id @generated_id end |
#manual_unique_id ⇒ String
A manual unique ID set by the user.
Corresponds to the JSON property manualUniqueId
2473 2474 2475 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2473 def manual_unique_id @manual_unique_id end |
#mysql ⇒ Google::Apis::MigrationcenterV1alpha1::MysqlDatabaseDeployment
Specific details for a Mysql database deployment.
Corresponds to the JSON property mysql
2478 2479 2480 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2478 def mysql @mysql end |
#postgresql ⇒ Google::Apis::MigrationcenterV1alpha1::PostgreSqlDatabaseDeployment
Specific details for a PostgreSQL database deployment.
Corresponds to the JSON property postgresql
2483 2484 2485 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2483 def postgresql @postgresql end |
#sql_server ⇒ Google::Apis::MigrationcenterV1alpha1::SqlServerDatabaseDeployment
Specific details for a Microsoft SQL Server database deployment.
Corresponds to the JSON property sqlServer
2488 2489 2490 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2488 def sql_server @sql_server end |
#topology ⇒ Google::Apis::MigrationcenterV1alpha1::DatabaseDeploymentTopology
Details of database deployment's topology.
Corresponds to the JSON property topology
2493 2494 2495 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2493 def topology @topology end |
#version ⇒ String
The database deployment version.
Corresponds to the JSON property version
2498 2499 2500 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2498 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2505 def update!(**args) @aggregated_stats = args[:aggregated_stats] if args.key?(:aggregated_stats) @aws_rds = args[:aws_rds] if args.key?(:aws_rds) @edition = args[:edition] if args.key?(:edition) @generated_id = args[:generated_id] if args.key?(:generated_id) @manual_unique_id = args[:manual_unique_id] if args.key?(:manual_unique_id) @mysql = args[:mysql] if args.key?(:mysql) @postgresql = args[:postgresql] if args.key?(:postgresql) @sql_server = args[:sql_server] if args.key?(:sql_server) @topology = args[:topology] if args.key?(:topology) @version = args[:version] if args.key?(:version) end |