Class: Google::Apis::DatastreamV1::SourceObjectIdentifier

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/datastream_v1/classes.rb,
lib/google/apis/datastream_v1/representations.rb,
lib/google/apis/datastream_v1/representations.rb

Overview

Represents an identifier of an object in the data source.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SourceObjectIdentifier

Returns a new instance of SourceObjectIdentifier.



4624
4625
4626
# File 'lib/google/apis/datastream_v1/classes.rb', line 4624

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

Instance Attribute Details

#mongodb_identifierGoogle::Apis::DatastreamV1::MongodbObjectIdentifier

MongoDB data source object identifier. Corresponds to the JSON property mongodbIdentifier



4592
4593
4594
# File 'lib/google/apis/datastream_v1/classes.rb', line 4592

def mongodb_identifier
  @mongodb_identifier
end

#mysql_identifierGoogle::Apis::DatastreamV1::MysqlObjectIdentifier

Mysql data source object identifier. Corresponds to the JSON property mysqlIdentifier



4597
4598
4599
# File 'lib/google/apis/datastream_v1/classes.rb', line 4597

def mysql_identifier
  @mysql_identifier
end

#oracle_identifierGoogle::Apis::DatastreamV1::OracleObjectIdentifier

Oracle data source object identifier. Corresponds to the JSON property oracleIdentifier



4602
4603
4604
# File 'lib/google/apis/datastream_v1/classes.rb', line 4602

def oracle_identifier
  @oracle_identifier
end

#postgresql_identifierGoogle::Apis::DatastreamV1::PostgresqlObjectIdentifier

PostgreSQL data source object identifier. Corresponds to the JSON property postgresqlIdentifier



4607
4608
4609
# File 'lib/google/apis/datastream_v1/classes.rb', line 4607

def postgresql_identifier
  @postgresql_identifier
end

#salesforce_identifierGoogle::Apis::DatastreamV1::SalesforceObjectIdentifier

Salesforce data source object identifier. Corresponds to the JSON property salesforceIdentifier



4612
4613
4614
# File 'lib/google/apis/datastream_v1/classes.rb', line 4612

def salesforce_identifier
  @salesforce_identifier
end

#spanner_identifierGoogle::Apis::DatastreamV1::SpannerObjectIdentifier

Spanner data source object identifier. Corresponds to the JSON property spannerIdentifier



4617
4618
4619
# File 'lib/google/apis/datastream_v1/classes.rb', line 4617

def spanner_identifier
  @spanner_identifier
end

#sql_server_identifierGoogle::Apis::DatastreamV1::SqlServerObjectIdentifier

SQLServer data source object identifier. Corresponds to the JSON property sqlServerIdentifier



4622
4623
4624
# File 'lib/google/apis/datastream_v1/classes.rb', line 4622

def sql_server_identifier
  @sql_server_identifier
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4629
4630
4631
4632
4633
4634
4635
4636
4637
# File 'lib/google/apis/datastream_v1/classes.rb', line 4629

def update!(**args)
  @mongodb_identifier = args[:mongodb_identifier] if args.key?(:mongodb_identifier)
  @mysql_identifier = args[:mysql_identifier] if args.key?(:mysql_identifier)
  @oracle_identifier = args[:oracle_identifier] if args.key?(:oracle_identifier)
  @postgresql_identifier = args[:postgresql_identifier] if args.key?(:postgresql_identifier)
  @salesforce_identifier = args[:salesforce_identifier] if args.key?(:salesforce_identifier)
  @spanner_identifier = args[:spanner_identifier] if args.key?(:spanner_identifier)
  @sql_server_identifier = args[:sql_server_identifier] if args.key?(:sql_server_identifier)
end