Skip to content

Discover Instances Revision

servicediscovery_discover_instances_revision R Documentation

Discovers the increasing revision associated with an instance

Description

Discovers the increasing revision associated with an instance.

Usage

servicediscovery_discover_instances_revision(NamespaceName, ServiceName)

Arguments

NamespaceName

[required] The HttpName name of the namespace. It's found in the HttpProperties member of the Properties member of the namespace.

ServiceName

[required] The name of the service that you specified when you registered the instance.

Value

A list with the following syntax:

list(
  InstancesRevision = 123
)

Request syntax

svc$discover_instances_revision(
  NamespaceName = "string",
  ServiceName = "string"
)

Examples

## Not run: 
# The following example discovers the revision ID for a registered
# instance.
svc$discover_instances_revision(
  NamespaceName = "example-namespace",
  ServiceName = "example-service"
)

## End(Not run)