racampos.dnac.event_series (0.0.1) — module

Manage EventSeries objects of EventManagement

| "added in version" 1.0 of racampos.dnac"

Authors: first last (@GitHubID)

preview | supported by community

This plugin has a corresponding action plugin.

Install collection

Install with ansible-galaxy collection install racampos.dnac:==0.0.1


Add to requirements.yml

  collections:
    - name: racampos.dnac
      version: 0.0.1

Description

Get the list of Published Notifications.

Get the Count of Published Notifications.


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: get_notifications
  cisco.dnac.event_series:
    state: query  # required
    category: SomeValue  # string
    domain: SomeValue  # string
    end_time: SomeValue  # string
    event_ids: SomeValue  # string
    limit: 1  #  number
    offset: 1  #  number
    order: SomeValue  # string
    severity: SomeValue  # string
    sort_by: SomeValue  # string
    source: SomeValue  # string
    start_time: SomeValue  # string
    sub_domain: SomeValue  # string
    type: SomeValue  # string
  register: query_result
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
  
- name: count_of_notifications
  cisco.dnac.event_series:
    state: query  # required
    count: True  # boolean, required
    category: SomeValue  # string
    domain: SomeValue  # string
    end_time: SomeValue  # string
    event_ids: SomeValue  # string
    severity: SomeValue  # string
    source: SomeValue  # string
    start_time: SomeValue  # string
    sub_domain: SomeValue  # string
    type: SomeValue  # string
  register: query_result

Inputs

    
type:
    description:
    - Type .
    type: str

count:
    description:
    - If true gets the number of objects.
    required: true
    type: bool

limit:
    description:
    - Limit whose default value 10.
    type: int

order:
    description:
    - Order query parameter.
    type: str

domain:
    description:
    - Domain .
    type: str

offset:
    description:
    - Offset whose default value 0.
    type: int

source:
    description:
    - Source .
    type: str

sort_by:
    description:
    - SortBy field name.
    type: str

category:
    description:
    - Category .
    type: str

end_time:
    description:
    - EndTime .
    type: str

severity:
    description:
    - Severity .
    type: str

event_ids:
    description:
    - The registered EventIds should be provided.
    type: str

start_time:
    description:
    - StartTime .
    type: str

sub_domain:
    description:
    - SubDomain .
    type: str

Outputs

count_of_notifications:
  contains: null
  description: Get the Count of Published Notifications.
  response:
    description: Response, property of the response body.
    returned: always
    sample: 0
    type: int
  returned: always
  type: dict
get_notifications:
  category:
    description: Category, property of the response body.
    returned: always
    sample: <category>
    type: str
  contains: null
  context:
    description: Context, property of the response body.
    returned: always
    sample: <context>
    type: str
  description:
    description: Description, property of the response body.
    returned: always
    sample: <description>
    type: str
  details:
    description: Details, property of the response body.
    returned: always
    type: dict
  domain:
    description: Domain, property of the response body.
    returned: always
    sample: <domain>
    type: str
  eventId:
    description: Event Id, property of the response body.
    returned: always
    sample: <eventid>
    type: str
  instanceId:
    description: Instance Id, property of the response body.
    returned: always
    sample: <instanceid>
    type: str
  name:
    description: Name, property of the response body.
    returned: always
    sample: <name>
    type: str
  namespace:
    description: Namespace, property of the response body.
    returned: always
    sample: <namespace>
    type: str
  returned: always
  severity:
    description: Severity, property of the response body.
    returned: always
    sample: 0
    type: int
  source:
    description: Source, property of the response body.
    returned: always
    sample: <source>
    type: str
  subDomain:
    description: Sub Domain, property of the response body.
    returned: always
    sample: <subdomain>
    type: str
  tenantId:
    description: Tenant Id, property of the response body.
    returned: always
    sample: <tenantid>
    type: str
  timestamp:
    description: Timestamp, property of the response body.
    returned: always
    sample: 0
    type: int
  type:
    description: Type, property of the response body.
    returned: always
    sample: <type>
    type: str

See also