Class: Asana::Resources::ProjectTemplatesBase

Inherits:
Resource
  • Object
show all
Defined in:
lib/asana/resources/gen/project_templates_base.rb

Direct Known Subclasses

ProjectTemplate

Class Method Summary collapse

Methods inherited from Resource

#initialize, #method_missing, #refresh, #respond_to_missing?, #to_h, #to_s

Methods included from ResponseHelper

#parse

Constructor Details

This class inherits a constructor from Asana::Resources::Resource

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Asana::Resources::Resource

Class Method Details

.get_project_template(client, project_template_gid: required("project_template_gid"), options: {}) ⇒ Object

Get a project template

Parameters:

  • project_template_gid (str) (defaults to: required("project_template_gid"))

    (required) Globally unique identifier for the project template.

  • options (Hash) (defaults to: {})

    the request I/O options

  • list (>str)

    ] Defines fields to return. Some requests return compact representations of objects in order to conserve resources and complete the request more efficiently. Other times requests return more information than you may need. This option allows you to list the exact set of fields that the API should be sure to return for the objects. The field names should be provided as paths, described below. The id of included objects will always be returned, regardless of the field options.

  • bool (>])

    opt_pretty [bool] Provides “pretty” output. Provides the response in a “pretty” format. In the case of JSON this means doing proper line breaking and indentation to make it readable. This will take extra time and increase the response size so it is advisable only to use this during debugging.



21
22
23
24
25
# File 'lib/asana/resources/gen/project_templates_base.rb', line 21

def get_project_template(client, project_template_gid: required("project_template_gid"), options: {})
  path = "/project_templates/{project_template_gid}"
  path["{project_template_gid}"] = project_template_gid
  parse(client.get(path, options: options)).first
end

.get_project_templates(client, workspace: nil, team: nil, options: {}) ⇒ Object

workspace - [str] The workspace to filter results on.

Parameters:

  • team (str) (defaults to: nil)

    The team to filter projects on.

  • options (Hash) (defaults to: {})

    the request I/O options

  • str (>]'Note: You can only pass in an offset that was returned to you via a previously paginated request.')

    offset [str] Offset token. An offset to the next page returned by the API. A pagination request will return an offset token, which can be used as an input parameter to the next request. If an offset is not passed in, the API will return the first page of results. ‘Note: You can only pass in an offset that was returned to you via a previously paginated request.’

  • int (>])

    limit [int] Results per page. The number of objects to return per page. The value must be between 1 and 100.

  • list (>str)

    ] Defines fields to return. Some requests return compact representations of objects in order to conserve resources and complete the request more efficiently. Other times requests return more information than you may need. This option allows you to list the exact set of fields that the API should be sure to return for the objects. The field names should be provided as paths, described below. The id of included objects will always be returned, regardless of the field options.

  • bool (>])

    opt_pretty [bool] Provides “pretty” output. Provides the response in a “pretty” format. In the case of JSON this means doing proper line breaking and indentation to make it readable. This will take extra time and increase the response size so it is advisable only to use this during debugging.



37
38
39
40
41
# File 'lib/asana/resources/gen/project_templates_base.rb', line 37

def get_project_templates(client, workspace: nil, team: nil, options: {})
  path = "/project_templates"
  params = { workspace: workspace, team: team }.reject { |_,v| v.nil? || Array(v).empty? }
  Collection.new(parse(client.get(path, params: params, options: options)), type: Resource, client: client)
end

.get_project_templates_for_team(client, team_gid: required("team_gid"), options: {}) ⇒ Object

Get a team’s project templates

Parameters:

  • team_gid (str) (defaults to: required("team_gid"))

    (required) Globally unique identifier for the team.

  • options (Hash) (defaults to: {})

    the request I/O options

  • str (>]'Note: You can only pass in an offset that was returned to you via a previously paginated request.')

    offset [str] Offset token. An offset to the next page returned by the API. A pagination request will return an offset token, which can be used as an input parameter to the next request. If an offset is not passed in, the API will return the first page of results. ‘Note: You can only pass in an offset that was returned to you via a previously paginated request.’

  • int (>])

    limit [int] Results per page. The number of objects to return per page. The value must be between 1 and 100.

  • list (>str)

    ] Defines fields to return. Some requests return compact representations of objects in order to conserve resources and complete the request more efficiently. Other times requests return more information than you may need. This option allows you to list the exact set of fields that the API should be sure to return for the objects. The field names should be provided as paths, described below. The id of included objects will always be returned, regardless of the field options.

  • bool (>])

    opt_pretty [bool] Provides “pretty” output. Provides the response in a “pretty” format. In the case of JSON this means doing proper line breaking and indentation to make it readable. This will take extra time and increase the response size so it is advisable only to use this during debugging.



51
52
53
54
55
# File 'lib/asana/resources/gen/project_templates_base.rb', line 51

def get_project_templates_for_team(client, team_gid: required("team_gid"), options: {})
  path = "/teams/{team_gid}/project_templates"
  path["{team_gid}"] = team_gid
  Collection.new(parse(client.get(path, options: options)), type: Resource, client: client)
end

.inherited(base) ⇒ Object



10
11
12
# File 'lib/asana/resources/gen/project_templates_base.rb', line 10

def self.inherited(base)
  Registry.register(base)
end

.instantiate_project(client, project_template_gid: required("project_template_gid"), options: {}, **data) ⇒ Object

Instantiate a project from a project template

Parameters:

  • project_template_gid (str) (defaults to: required("project_template_gid"))

    (required) Globally unique identifier for the project template.

  • options (Hash) (defaults to: {})

    the request I/O options

  • list (>str)

    ] Defines fields to return. Some requests return compact representations of objects in order to conserve resources and complete the request more efficiently. Other times requests return more information than you may need. This option allows you to list the exact set of fields that the API should be sure to return for the objects. The field names should be provided as paths, described below. The id of included objects will always be returned, regardless of the field options.

  • bool (>])

    opt_pretty [bool] Provides “pretty” output. Provides the response in a “pretty” format. In the case of JSON this means doing proper line breaking and indentation to make it readable. This will take extra time and increase the response size so it is advisable only to use this during debugging.

  • data (Hash)

    the attributes to POST



64
65
66
67
68
# File 'lib/asana/resources/gen/project_templates_base.rb', line 64

def instantiate_project(client, project_template_gid: required("project_template_gid"), options: {}, **data)
  path = "/project_templates/{project_template_gid}/instantiateProject"
  path["{project_template_gid}"] = project_template_gid
  Job.new(parse(client.post(path, body: data, options: options)).first, client: client)
end