Class: Google::Cloud::Spanner::Project
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Cloud::Spanner::Project
 
 
- Defined in:
 - lib/google/cloud/spanner/project.rb
 
Overview
Project
Projects are top-level containers in Google Cloud Platform. They store information about billing and authorized users, and they contain Cloud Spanner data. Each project has a friendly name and a unique ID.
Google::Cloud::Spanner::Project is the main object for interacting with Cloud Spanner.
Instance and Database objects are created, accessed, and managed by Google::Cloud::Spanner::Project.
A Client obtained from a project can be used to read and/or modify data in a Cloud Spanner database.
See new and Google::Cloud#spanner.
Instance Method Summary collapse
- 
  
    
      #batch_client(instance_id, database_id)  ⇒ Client 
    
    
  
  
  
  
  
  
  
  
  
    
Creates a Cloud Spanner batch client.
 - 
  
    
      #client(instance_id, database_id, pool: {})  ⇒ Client 
    
    
  
  
  
  
  
  
  
  
  
    
Creates a Cloud Spanner client.
 - 
  
    
      #create_database(instance_id, database_id, statements: [])  ⇒ Database::Job 
    
    
  
  
  
  
  
  
  
  
  
    
Creates a database and starts preparing it to begin serving.
 - 
  
    
      #create_instance(instance_id, name: nil, config: nil, nodes: nil, labels: nil)  ⇒ Instance::Job 
    
    
  
  
  
  
  
  
  
  
  
    
Creates a Cloud Spanner instance and starts preparing it to begin serving.
 - 
  
    
      #database(instance_id, database_id)  ⇒ Google::Cloud::Spanner::Database? 
    
    
  
  
  
  
  
  
  
  
  
    
Retrieves a database by unique identifier.
 - 
  
    
      #databases(instance_id, token: nil, max: nil)  ⇒ Array<Google::Cloud::Spanner::Database> 
    
    
  
  
  
  
  
  
  
  
  
    
Retrieves the list of databases for the project.
 - 
  
    
      #instance(instance_id)  ⇒ Google::Cloud::Spanner::Instance? 
    
    
  
  
  
  
  
  
  
  
  
    
Retrieves a Cloud Spanner instance by unique identifier.
 - 
  
    
      #instance_config(instance_config_id)  ⇒ Google::Cloud::Spanner::Instance::Config? 
    
    
  
  
  
  
  
  
  
  
  
    
Retrieves an instance configuration by unique identifier.
 - 
  
    
      #instance_configs(token: nil, max: nil)  ⇒ Array<Google::Cloud::Spanner::Instance::Config> 
    
    
  
  
  
  
  
  
  
  
  
    
Retrieves the list of instance configurations for the project.
 - 
  
    
      #instances(token: nil, max: nil)  ⇒ Array<Google::Cloud::Spanner::Instance> 
    
    
  
  
  
  
  
  
  
  
  
    
Retrieves the list of Cloud Spanner instances for the project.
 - 
  
    
      #project_id  ⇒ Object 
    
    
      (also: #project)
    
  
  
  
  
  
  
  
  
  
    
The identifier for the Cloud Spanner project.
 
Instance Method Details
#batch_client(instance_id, database_id) ⇒ Client
Creates a Cloud Spanner batch client. A batch client is used to read data across multiple machines or processes.
      497 498 499  | 
    
      # File 'lib/google/cloud/spanner/project.rb', line 497 def batch_client instance_id, database_id BatchClient.new self, instance_id, database_id end  | 
  
#client(instance_id, database_id, pool: {}) ⇒ Client
Creates a Cloud Spanner client. A client is used to read and/or modify data in a Cloud Spanner database.
      456 457 458 459  | 
    
      # File 'lib/google/cloud/spanner/project.rb', line 456 def client instance_id, database_id, pool: {} Client.new self, instance_id, database_id, (pool) end  | 
  
#create_database(instance_id, database_id, statements: []) ⇒ Database::Job
Creates a database and starts preparing it to begin serving.
See Database::Job.
      402 403 404 405 406  | 
    
      # File 'lib/google/cloud/spanner/project.rb', line 402 def create_database instance_id, database_id, statements: [] grpc = service.create_database instance_id, database_id, statements: statements Database::Job.from_grpc grpc, service end  | 
  
#create_instance(instance_id, name: nil, config: nil, nodes: nil, labels: nil) ⇒ Instance::Job
Creates a Cloud Spanner instance and starts preparing it to begin serving.
See Instance::Job.
      219 220 221 222 223 224 225 226  | 
    
      # File 'lib/google/cloud/spanner/project.rb', line 219 def create_instance instance_id, name: nil, config: nil, nodes: nil, labels: nil config = config.path if config.respond_to? :path grpc = service.create_instance \ instance_id, name: name, config: config, nodes: nodes, labels: labels Instance::Job.from_grpc grpc, service end  | 
  
#database(instance_id, database_id) ⇒ Google::Cloud::Spanner::Database?
Retrieves a database by unique identifier.
      356 357 358 359 360 361 362  | 
    
      # File 'lib/google/cloud/spanner/project.rb', line 356 def database instance_id, database_id ensure_service! grpc = service.get_database instance_id, database_id Database.from_grpc grpc, service rescue Google::Cloud::NotFoundError nil end  | 
  
#databases(instance_id, token: nil, max: nil) ⇒ Array<Google::Cloud::Spanner::Database>
Retrieves the list of databases for the project.
      329 330 331 332 333  | 
    
      # File 'lib/google/cloud/spanner/project.rb', line 329 def databases instance_id, token: nil, max: nil ensure_service! grpc = service.list_databases instance_id, token: token, max: max Database::List.from_grpc grpc, service, instance_id, max end  | 
  
#instance(instance_id) ⇒ Google::Cloud::Spanner::Instance?
Retrieves a Cloud Spanner instance by unique identifier.
      154 155 156 157 158 159 160  | 
    
      # File 'lib/google/cloud/spanner/project.rb', line 154 def instance instance_id ensure_service! grpc = service.get_instance instance_id Instance.from_grpc grpc, service rescue Google::Cloud::NotFoundError nil end  | 
  
#instance_config(instance_config_id) ⇒ Google::Cloud::Spanner::Instance::Config?
Retrieves an instance configuration by unique identifier.
      289 290 291 292 293 294 295  | 
    
      # File 'lib/google/cloud/spanner/project.rb', line 289 def instance_config instance_config_id ensure_service! grpc = service.get_instance_config instance_config_id Instance::Config.from_grpc grpc rescue Google::Cloud::NotFoundError nil end  | 
  
#instance_configs(token: nil, max: nil) ⇒ Array<Google::Cloud::Spanner::Instance::Config>
Retrieves the list of instance configurations for the project.
      260 261 262 263 264  | 
    
      # File 'lib/google/cloud/spanner/project.rb', line 260 def instance_configs token: nil, max: nil ensure_service! grpc = service.list_instance_configs token: token, max: max Instance::Config::List.from_grpc grpc, service, max end  | 
  
#instances(token: nil, max: nil) ⇒ Array<Google::Cloud::Spanner::Instance>
Retrieves the list of Cloud Spanner instances for the project.
      128 129 130 131 132  | 
    
      # File 'lib/google/cloud/spanner/project.rb', line 128 def instances token: nil, max: nil ensure_service! grpc = service.list_instances token: token, max: max Instance::List.from_grpc grpc, service, max end  | 
  
#project_id ⇒ Object Also known as: project
The identifier for the Cloud Spanner project.
      92 93 94  | 
    
      # File 'lib/google/cloud/spanner/project.rb', line 92 def project_id service.project end  |