Class: Google::Apis::SqladminV1beta4::User
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::SqladminV1beta4::User
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/sqladmin_v1beta4/classes.rb,
generated/google/apis/sqladmin_v1beta4/representations.rb,
generated/google/apis/sqladmin_v1beta4/representations.rb 
Overview
A Cloud SQL user resource.
Instance Attribute Summary collapse
- 
  
    
      #etag  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
This field is deprecated and will be removed from a future version of the API.
 - 
  
    
      #host  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The host name from which the user can connect.
 - 
  
    
      #instance  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the Cloud SQL instance.
 - 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
This is always sql#user.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the user in the Cloud SQL instance.
 - 
  
    
      #password  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The password for the user.
 - 
  
    
      #project  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The project ID of the project containing the Cloud SQL database.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ User 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of User.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ User
Returns a new instance of User
      2366 2367 2368  | 
    
      # File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 2366 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#etag ⇒ String
This field is deprecated and will be removed from a future version of the API.
Corresponds to the JSON property etag
      2328 2329 2330  | 
    
      # File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 2328 def etag @etag end  | 
  
#host ⇒ String
The host name from which the user can connect. For insert operations, host
defaults to an empty string. For update operations, host is specified as part
of the request URL. The host name cannot be updated after insertion.
Corresponds to the JSON property host
      2335 2336 2337  | 
    
      # File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 2335 def host @host end  | 
  
#instance ⇒ String
The name of the Cloud SQL instance. This does not include the project ID. Can
be omitted for update since it is already specified on the URL.
Corresponds to the JSON property instance
      2341 2342 2343  | 
    
      # File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 2341 def instance @instance end  | 
  
#kind ⇒ String
This is always sql#user.
Corresponds to the JSON property kind
      2346 2347 2348  | 
    
      # File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 2346 def kind @kind end  | 
  
#name ⇒ String
The name of the user in the Cloud SQL instance. Can be omitted for update
since it is already specified in the URL.
Corresponds to the JSON property name
      2352 2353 2354  | 
    
      # File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 2352 def name @name end  | 
  
#password ⇒ String
The password for the user.
Corresponds to the JSON property password
      2357 2358 2359  | 
    
      # File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 2357 def password @password end  | 
  
#project ⇒ String
The project ID of the project containing the Cloud SQL database. The Google
apps domain is prefixed if applicable. Can be omitted for update since it is
already specified on the URL.
Corresponds to the JSON property project
      2364 2365 2366  | 
    
      # File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 2364 def project @project end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2371 2372 2373 2374 2375 2376 2377 2378 2379  | 
    
      # File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 2371 def update!(**args) @etag = args[:etag] if args.key?(:etag) @host = args[:host] if args.key?(:host) @instance = args[:instance] if args.key?(:instance) @kind = args[:kind] if args.key?(:kind) @name = args[:name] if args.key?(:name) @password = args[:password] if args.key?(:password) @project = args[:project] if args.key?(:project) end  |