Class: Google::Apis::SqladminV1beta4::SqlServerEntraIdConfig

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

Overview

SQL Server Entra ID configuration.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SqlServerEntraIdConfig

Returns a new instance of SqlServerEntraIdConfig.



6097
6098
6099
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 6097

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

Instance Attribute Details

#application_idString

Optional. The application ID for the Entra ID configuration. Corresponds to the JSON property applicationId

Returns:

  • (String)


6085
6086
6087
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 6085

def application_id
  @application_id
end

#kindString

Output only. This is always sql#sqlServerEntraIdConfig Corresponds to the JSON property kind

Returns:

  • (String)


6090
6091
6092
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 6090

def kind
  @kind
end

#tenant_idString

Optional. The tenant ID for the Entra ID configuration. Corresponds to the JSON property tenantId

Returns:

  • (String)


6095
6096
6097
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 6095

def tenant_id
  @tenant_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6102
6103
6104
6105
6106
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 6102

def update!(**args)
  @application_id = args[:application_id] if args.key?(:application_id)
  @kind = args[:kind] if args.key?(:kind)
  @tenant_id = args[:tenant_id] if args.key?(:tenant_id)
end