Versions in this module Expand all Collapse all v2 v2.2.1 Sep 25, 2024 Changes in this version + var ResourceActionAbandon ResourceAction = "ABANDON" + var ResourceActionCreate ResourceAction = "CREATE" + var ResourceActionDelete ResourceAction = "DELETE" + var ResourceActionResume ResourceAction = "RESUME" + var ResourceActionRollback ResourceAction = "ROLLBACK" + var ResourceActionSuspend ResourceAction = "SUSPEND" + var ResourceActionUpdate ResourceAction = "UPDATE" + var ResourceStatusComplete ResourceStatus = "COMPLETE" + var ResourceStatusFailed ResourceStatus = "FAILED" + var ResourceStatusInProgress ResourceStatus = "IN_PROGRESS" + var SortAsc SortDir = "asc" + var SortCreatedAt SortKey = "created_at" + var SortDesc SortDir = "desc" + var SortName SortKey = "name" + var SortResourceType SortKey = "resource_type" + func List(client *gophercloud.ServiceClient, stackName, stackID string, ...) pagination.Pager + func ListResourceEvents(client *gophercloud.ServiceClient, stackName, stackID, resourceName string, ...) pagination.Pager + type Event struct + ID string + Links []gophercloud.Link + LogicalResourceID string + PhysicalResourceID string + ResourceName string + ResourceProperties map[string]any + ResourceStatus string + ResourceStatusReason string + Time time.Time + func ExtractEvents(r pagination.Page) ([]Event, error) + func ExtractResourceEvents(page pagination.Page) ([]Event, error) + func (r *Event) UnmarshalJSON(b []byte) error + type EventPage struct + func (r EventPage) IsEmpty() (bool, error) + func (r EventPage) LastMarker() (string, error) + type FindResult struct + func Find(ctx context.Context, c *gophercloud.ServiceClient, stackName string) (r FindResult) + func (r FindResult) Extract() ([]Event, error) + type GetResult struct + func Get(ctx context.Context, c *gophercloud.ServiceClient, ...) (r GetResult) + func (r GetResult) Extract() (*Event, error) + type ListOpts struct + Limit int + Marker string + ResourceActions []ResourceAction + ResourceNames []string + ResourceStatuses []ResourceStatus + ResourceTypes []string + SortDir SortDir + SortKey SortKey + func (opts ListOpts) ToStackEventListQuery() (string, error) + type ListOptsBuilder interface + ToStackEventListQuery func() (string, error) + type ListResourceEventsOpts struct + Limit int + Marker string + ResourceActions []string + ResourceNames []string + ResourceStatuses []string + ResourceTypes []string + SortDir SortDir + SortKey SortKey + func (opts ListResourceEventsOpts) ToResourceEventListQuery() (string, error) + type ListResourceEventsOptsBuilder interface + ToResourceEventListQuery func() (string, error) + type ResourceAction string + type ResourceStatus string + type SortDir string + type SortKey string