Firebase Rules API . projects . releases

Instance Methods

close()

Close httplib2 connections.

create(name, body=None, x__xgafv=None)

Create a `Release`. Release names should reflect the developer's deployment practices. For example, the release name may include the environment name, application name, application version, or any other name meaningful to the developer. Once a `Release` refers to a `Ruleset`, the rules can be enforced by Firebase Rules-enabled services. More than one `Release` may be 'live' concurrently. Consider the following three `Release` names for `projects/foo` and the `Ruleset` to which they refer. Release Name -> Ruleset Name * projects/foo/releases/prod -> projects/foo/rulesets/uuid123 * projects/foo/releases/prod/beta -> projects/foo/rulesets/uuid123 * projects/foo/releases/prod/v23 -> projects/foo/rulesets/uuid456 The relationships reflect a `Ruleset` rollout in progress. The `prod` and `prod/beta` releases refer to the same `Ruleset`. However, `prod/v23` refers to a new `Ruleset`. The `Ruleset` reference for a `Release` may be updated using the UpdateRelease method.

delete(name, x__xgafv=None)

Delete a `Release` by resource name.

get(name, x__xgafv=None)

Get a `Release` by name.

getExecutable(name, executableVersion=None, x__xgafv=None)

Get the `Release` executable to use when enforcing rules.

list(name, filter=None, pageSize=None, pageToken=None, x__xgafv=None)

List the `Release` values for a project. This list may optionally be filtered by `Release` name, `Ruleset` name, `TestSuite` name, or any combination thereof.

list_next()

Retrieves the next page of results.

patch(name, body=None, x__xgafv=None)

Update a `Release` via PATCH. Only updates to `ruleset_name` will be honored. `Release` rename is not supported. To create a `Release` use the CreateRelease method.

Method Details

close()
Close httplib2 connections.
create(name, body=None, x__xgafv=None)
Create a `Release`. Release names should reflect the developer's deployment practices. For example, the release name may include the environment name, application name, application version, or any other name meaningful to the developer. Once a `Release` refers to a `Ruleset`, the rules can be enforced by Firebase Rules-enabled services. More than one `Release` may be 'live' concurrently. Consider the following three `Release` names for `projects/foo` and the `Ruleset` to which they refer. Release Name -> Ruleset Name * projects/foo/releases/prod -> projects/foo/rulesets/uuid123 * projects/foo/releases/prod/beta -> projects/foo/rulesets/uuid123 * projects/foo/releases/prod/v23 -> projects/foo/rulesets/uuid456 The relationships reflect a `Ruleset` rollout in progress. The `prod` and `prod/beta` releases refer to the same `Ruleset`. However, `prod/v23` refers to a new `Ruleset`. The `Ruleset` reference for a `Release` may be updated using the UpdateRelease method.

Args:
  name: string, Required. Resource name for the project which owns this `Release`. Format: `projects/{project_id}` (required)
  body: object, The request body.
    The object takes the form of:

{ # `Release` is a named reference to a `Ruleset`. Once a `Release` refers to a `Ruleset`, rules-enabled services will be able to enforce the `Ruleset`.
  "createTime": "A String", # Output only. Time the release was created.
  "name": "A String", # Required. Format: `projects/{project_id}/releases/{release_id}`
  "rulesetName": "A String", # Required. Name of the `Ruleset` referred to by this `Release`. The `Ruleset` must exist for the `Release` to be created.
  "updateTime": "A String", # Output only. Time the release was updated.
}

  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # `Release` is a named reference to a `Ruleset`. Once a `Release` refers to a `Ruleset`, rules-enabled services will be able to enforce the `Ruleset`.
  "createTime": "A String", # Output only. Time the release was created.
  "name": "A String", # Required. Format: `projects/{project_id}/releases/{release_id}`
  "rulesetName": "A String", # Required. Name of the `Ruleset` referred to by this `Release`. The `Ruleset` must exist for the `Release` to be created.
  "updateTime": "A String", # Output only. Time the release was updated.
}
delete(name, x__xgafv=None)
Delete a `Release` by resource name.

Args:
  name: string, Required. Resource name for the `Release` to delete. Format: `projects/{project_id}/releases/{release_id}` (required)
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); }
}
get(name, x__xgafv=None)
Get a `Release` by name.

Args:
  name: string, Required. Resource name of the `Release`. Format: `projects/{project_id}/releases/{release_id}` (required)
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # `Release` is a named reference to a `Ruleset`. Once a `Release` refers to a `Ruleset`, rules-enabled services will be able to enforce the `Ruleset`.
  "createTime": "A String", # Output only. Time the release was created.
  "name": "A String", # Required. Format: `projects/{project_id}/releases/{release_id}`
  "rulesetName": "A String", # Required. Name of the `Ruleset` referred to by this `Release`. The `Ruleset` must exist for the `Release` to be created.
  "updateTime": "A String", # Output only. Time the release was updated.
}
getExecutable(name, executableVersion=None, x__xgafv=None)
Get the `Release` executable to use when enforcing rules.

Args:
  name: string, Required. Resource name of the `Release`. Format: `projects/{project_id}/releases/{release_id}` (required)
  executableVersion: string, The requested runtime executable version. Defaults to FIREBASE_RULES_EXECUTABLE_V1.
    Allowed values
      RELEASE_EXECUTABLE_VERSION_UNSPECIFIED - Executable format unspecified. Defaults to FIREBASE_RULES_EXECUTABLE_V1
      FIREBASE_RULES_EXECUTABLE_V1 - Firebase Rules syntax 'rules2' executable versions: Custom AST for use with Java clients.
      FIREBASE_RULES_EXECUTABLE_V2 - CEL-based executable for use with C++ clients.
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # The response for FirebaseRulesService.GetReleaseExecutable
  "executable": "A String", # Executable view of the `Ruleset` referenced by the `Release`.
  "executableVersion": "A String", # The Rules runtime version of the executable.
  "language": "A String", # `Language` used to generate the executable bytes.
  "rulesetName": "A String", # `Ruleset` name associated with the `Release` executable.
  "syncTime": "A String", # Optional, indicates the freshness of the result. The response is guaranteed to be the latest within an interval up to the sync_time (inclusive).
  "updateTime": "A String", # Timestamp for the most recent `Release.update_time`.
}
list(name, filter=None, pageSize=None, pageToken=None, x__xgafv=None)
List the `Release` values for a project. This list may optionally be filtered by `Release` name, `Ruleset` name, `TestSuite` name, or any combination thereof.

Args:
  name: string, Required. Resource name for the project. Format: `projects/{project_id}` (required)
  filter: string, `Release` filter. The list method supports filters with restrictions on the `Release.name`, and `Release.ruleset_name`. Example 1: A filter of 'name=prod*' might return `Release`s with names within 'projects/foo' prefixed with 'prod': Name -> Ruleset Name: * projects/foo/releases/prod -> projects/foo/rulesets/uuid1234 * projects/foo/releases/prod/v1 -> projects/foo/rulesets/uuid1234 * projects/foo/releases/prod/v2 -> projects/foo/rulesets/uuid8888 Example 2: A filter of `name=prod* ruleset_name=uuid1234` would return only `Release` instances for 'projects/foo' with names prefixed with 'prod' referring to the same `Ruleset` name of 'uuid1234': Name -> Ruleset Name: * projects/foo/releases/prod -> projects/foo/rulesets/1234 * projects/foo/releases/prod/v1 -> projects/foo/rulesets/1234 In the examples, the filter parameters refer to the search filters are relative to the project. Fully qualified prefixed may also be used.
  pageSize: integer, Page size to load. Maximum of 100. Defaults to 10. Note: `page_size` is just a hint and the service may choose to load fewer than `page_size` results due to the size of the output. To traverse all of the releases, the caller should iterate until the `page_token` on the response is empty.
  pageToken: string, Next page token for the next batch of `Release` instances.
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # The response for FirebaseRulesService.ListReleases.
  "nextPageToken": "A String", # The pagination token to retrieve the next page of results. If the value is empty, no further results remain.
  "releases": [ # List of `Release` instances.
    { # `Release` is a named reference to a `Ruleset`. Once a `Release` refers to a `Ruleset`, rules-enabled services will be able to enforce the `Ruleset`.
      "createTime": "A String", # Output only. Time the release was created.
      "name": "A String", # Required. Format: `projects/{project_id}/releases/{release_id}`
      "rulesetName": "A String", # Required. Name of the `Ruleset` referred to by this `Release`. The `Ruleset` must exist for the `Release` to be created.
      "updateTime": "A String", # Output only. Time the release was updated.
    },
  ],
}
list_next()
Retrieves the next page of results.

        Args:
          previous_request: The request for the previous page. (required)
          previous_response: The response from the request for the previous page. (required)

        Returns:
          A request object that you can call 'execute()' on to request the next
          page. Returns None if there are no more items in the collection.
        
patch(name, body=None, x__xgafv=None)
Update a `Release` via PATCH. Only updates to `ruleset_name` will be honored. `Release` rename is not supported. To create a `Release` use the CreateRelease method.

Args:
  name: string, Required. Resource name for the project which owns this `Release`. Format: `projects/{project_id}` (required)
  body: object, The request body.
    The object takes the form of:

{ # The request for FirebaseRulesService.UpdateRelease.
  "release": { # `Release` is a named reference to a `Ruleset`. Once a `Release` refers to a `Ruleset`, rules-enabled services will be able to enforce the `Ruleset`. # Required. `Release` to update.
    "createTime": "A String", # Output only. Time the release was created.
    "name": "A String", # Required. Format: `projects/{project_id}/releases/{release_id}`
    "rulesetName": "A String", # Required. Name of the `Ruleset` referred to by this `Release`. The `Ruleset` must exist for the `Release` to be created.
    "updateTime": "A String", # Output only. Time the release was updated.
  },
  "updateMask": "A String", # Specifies which fields to update.
}

  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # `Release` is a named reference to a `Ruleset`. Once a `Release` refers to a `Ruleset`, rules-enabled services will be able to enforce the `Ruleset`.
  "createTime": "A String", # Output only. Time the release was created.
  "name": "A String", # Required. Format: `projects/{project_id}/releases/{release_id}`
  "rulesetName": "A String", # Required. Name of the `Ruleset` referred to by this `Release`. The `Ruleset` must exist for the `Release` to be created.
  "updateTime": "A String", # Output only. Time the release was updated.
}