addresources(projectName, region, resourceViewName, body)
Add resources to the view.
delete(projectName, region, resourceViewName)
Delete a resource view.
get(projectName, region, resourceViewName)
Get the information of a resource view.
insert(projectName, region, body)
Create a resource view.
list(projectName, region, pageToken=None, maxResults=None)
List resource views.
list_next(previous_request, previous_response)
Retrieves the next page of results.
listresources(projectName, region, resourceViewName, pageToken=None, maxResults=None)
List the resources in the view.
listresources_next(previous_request, previous_response)
Retrieves the next page of results.
removeresources(projectName, region, resourceViewName, body)
Remove resources from the view.
addresources(projectName, region, resourceViewName, body)
Add resources to the view. Args: projectName: string, The project name of the resource view. (required) region: string, The region name of the resource view. (required) resourceViewName: string, The name of the resource view. (required) body: object, The request body. (required) The object takes the form of: { # The request to add resources to the resource view. "resources": [ # The list of resources to be added. "A String", ], }
delete(projectName, region, resourceViewName)
Delete a resource view. Args: projectName: string, The project name of the resource view. (required) region: string, The region name of the resource view. (required) resourceViewName: string, The name of the resource view. (required)
get(projectName, region, resourceViewName)
Get the information of a resource view. Args: projectName: string, The project name of the resource view. (required) region: string, The region name of the resource view. (required) resourceViewName: string, The name of the resource view. (required) Returns: An object of the form: { # The resource view object. "kind": "resourceviews#resourceView", # Type of the resource. "numMembers": 42, # The total number of resources in the resource view. "description": "A String", # The detailed description of the resource view. "lastModified": "A String", # The last modified time of the view. Not supported yet. "labels": [ # The labels for events. { # The Label to be applied to the resource views. "value": "A String", # Value of the label. "key": "A String", # Key of the label. }, ], "creationTime": "A String", # The creation time of the resource view. "members": [ # A list of all resources in the resource view. "A String", ], "id": "A String", # [Output Only] The ID of the resource view. "selfLink": "A String", # [Output Only] A self-link to the resource view. "name": "A String", # The name of the resource view. }
insert(projectName, region, body)
Create a resource view. Args: projectName: string, The project name of the resource view. (required) region: string, The region name of the resource view. (required) body: object, The request body. (required) The object takes the form of: { # The resource view object. "kind": "resourceviews#resourceView", # Type of the resource. "numMembers": 42, # The total number of resources in the resource view. "description": "A String", # The detailed description of the resource view. "lastModified": "A String", # The last modified time of the view. Not supported yet. "labels": [ # The labels for events. { # The Label to be applied to the resource views. "value": "A String", # Value of the label. "key": "A String", # Key of the label. }, ], "creationTime": "A String", # The creation time of the resource view. "members": [ # A list of all resources in the resource view. "A String", ], "id": "A String", # [Output Only] The ID of the resource view. "selfLink": "A String", # [Output Only] A self-link to the resource view. "name": "A String", # The name of the resource view. } Returns: An object of the form: { # The response to a resource view insert request. "resource": { # The resource view object. # The resource view object inserted. "kind": "resourceviews#resourceView", # Type of the resource. "numMembers": 42, # The total number of resources in the resource view. "description": "A String", # The detailed description of the resource view. "lastModified": "A String", # The last modified time of the view. Not supported yet. "labels": [ # The labels for events. { # The Label to be applied to the resource views. "value": "A String", # Value of the label. "key": "A String", # Key of the label. }, ], "creationTime": "A String", # The creation time of the resource view. "members": [ # A list of all resources in the resource view. "A String", ], "id": "A String", # [Output Only] The ID of the resource view. "selfLink": "A String", # [Output Only] A self-link to the resource view. "name": "A String", # The name of the resource view. }, }
list(projectName, region, pageToken=None, maxResults=None)
List resource views. Args: projectName: string, The project name of the resource view. (required) region: string, The region name of the resource view. (required) pageToken: string, Specifies a nextPageToken returned by a previous list request. This token can be used to request the next page of results from a previous list request. maxResults: integer, Maximum count of results to be returned. Acceptable values are 0 to 5000, inclusive. (Default: 5000) Returns: An object of the form: { # The response to the list resource view request. "nextPageToken": "A String", # A token used for pagination. "resourceViews": [ # The list of resource views that meet the criteria. { # The resource view object. "kind": "resourceviews#resourceView", # Type of the resource. "numMembers": 42, # The total number of resources in the resource view. "description": "A String", # The detailed description of the resource view. "lastModified": "A String", # The last modified time of the view. Not supported yet. "labels": [ # The labels for events. { # The Label to be applied to the resource views. "value": "A String", # Value of the label. "key": "A String", # Key of the label. }, ], "creationTime": "A String", # The creation time of the resource view. "members": [ # A list of all resources in the resource view. "A String", ], "id": "A String", # [Output Only] The ID of the resource view. "selfLink": "A String", # [Output Only] A self-link to the resource view. "name": "A String", # The name of the resource view. }, ], }
list_next(previous_request, previous_response)
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.
listresources(projectName, region, resourceViewName, pageToken=None, maxResults=None)
List the resources in the view. Args: projectName: string, The project name of the resource view. (required) region: string, The region name of the resource view. (required) resourceViewName: string, The name of the resource view. (required) pageToken: string, Specifies a nextPageToken returned by a previous list request. This token can be used to request the next page of results from a previous list request. maxResults: integer, Maximum count of results to be returned. Acceptable values are 0 to 5000, inclusive. (Default: 5000) Returns: An object of the form: { # The response to the list resource request. "nextPageToken": "A String", # A token used for pagination. "members": [ # The resources in the view. "A String", ], }
listresources_next(previous_request, previous_response)
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.
removeresources(projectName, region, resourceViewName, body)
Remove resources from the view. Args: projectName: string, The project name of the resource view. (required) region: string, The region name of the resource view. (required) resourceViewName: string, The name of the resource view. (required) body: object, The request body. (required) The object takes the form of: { # The request to remove resources from the resource view. "resources": [ # The list of resources to be removed. "A String", ], }