Package google.golang.org/appengine/v2/module (v2.0.6)

Package module provides functions for interacting with modules.

The appengine package contains functions that report the identity of the app, including the module name.

Functions

func DefaultVersion

  func 
  
 DefaultVersion 
 ( 
 c 
  
  context 
 
 . 
  Context 
 
 , 
  
 module 
  
  string 
 
 ) 
  
 ( 
  string 
 
 , 
  
  error 
 
 ) 
 

DefaultVersion returns the default version of the specified module. If module is the empty string, it means the default module.

func List

  func 
  
 List 
 ( 
 c 
  
  context 
 
 . 
  Context 
 
 ) 
  
 ([] 
  string 
 
 , 
  
  error 
 
 ) 
 

List returns the names of modules belonging to this application.

func NumInstances

  func 
  
 NumInstances 
 ( 
 c 
  
  context 
 
 . 
  Context 
 
 , 
  
 module 
 , 
  
 version 
  
  string 
 
 ) 
  
 ( 
  int 
 
 , 
  
  error 
 
 ) 
 

NumInstances returns the number of instances of the given module/version. If either argument is the empty string it means the default. This only works if you are using manual_scaling in your app's config file.

func SetNumInstances

  func 
  
 SetNumInstances 
 ( 
 c 
  
  context 
 
 . 
  Context 
 
 , 
  
 module 
 , 
  
 version 
  
  string 
 
 , 
  
 instances 
  
  int 
 
 ) 
  
  error 
 
 

SetNumInstances sets the number of instances of the given module.version to the specified value. If either module or version are the empty string it means the default.

func Start

  func 
  
 Start 
 ( 
 c 
  
  context 
 
 . 
  Context 
 
 , 
  
 module 
 , 
  
 version 
  
  string 
 
 ) 
  
  error 
 
 

Start starts the specified version of the specified module. If either module or version are the empty string, it means the default.

func Stop

  func 
  
 Stop 
 ( 
 c 
  
  context 
 
 . 
  Context 
 
 , 
  
 module 
 , 
  
 version 
  
  string 
 
 ) 
  
  error 
 
 

Stop stops the specified version of the specified module. If either module or version are the empty string, it means the default.

func Versions

  func 
  
 Versions 
 ( 
 c 
  
  context 
 
 . 
  Context 
 
 , 
  
 module 
  
  string 
 
 ) 
  
 ([] 
  string 
 
 , 
  
  error 
 
 ) 
 

Versions returns the names of the versions that belong to the specified module. If module is the empty string, it means the default module.

Create a Mobile Website
View Site in Mobile | Classic
Share by: