Class: Google::Apis::SqladminV1beta4::SqlServerEntraIdConfig
- Inherits:
-
Object
- Object
- Google::Apis::SqladminV1beta4::SqlServerEntraIdConfig
- 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
-
#application_id ⇒ String
Optional.
-
#kind ⇒ String
Output only.
-
#tenant_id ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SqlServerEntraIdConfig
constructor
A new instance of SqlServerEntraIdConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SqlServerEntraIdConfig
Returns a new instance of SqlServerEntraIdConfig.
6009 6010 6011 |
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 6009 def initialize(**args) update!(**args) end |
Instance Attribute Details
#application_id ⇒ String
Optional. The application ID for the Entra ID configuration.
Corresponds to the JSON property applicationId
5997 5998 5999 |
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 5997 def application_id @application_id end |
#kind ⇒ String
Output only. This is always sql#sqlServerEntraIdConfig
Corresponds to the JSON property kind
6002 6003 6004 |
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 6002 def kind @kind end |
#tenant_id ⇒ String
Optional. The tenant ID for the Entra ID configuration.
Corresponds to the JSON property tenantId
6007 6008 6009 |
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 6007 def tenant_id @tenant_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6014 6015 6016 6017 6018 |
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 6014 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 |