Creates a stanza in this configuration file.
Creates a stanza in this configuration file.
Name | Type | Description |
---|---|---|
stanzaName | String | A name for this stanza. |
values | Object | A dictionary of key-value pairs to put in this stanza. |
callback | Function | A function to call with the created stanza: |
var file = service.configurations().item("props");
file.create("my_stanza", function(err, newStanza) {
console.log("CREATED");
});
create: function(stanzaName, values, callback) {
// If someone called us with the default style of (params, callback),
// lets make it work
if (utils.isObject(stanzaName) && utils.isFunction(values) && !callback) {
callback = values;
values = stanzaName;
stanzaName = values.name;
}
if (utils.isFunction(values) && !callback) {
callback = values;
values = {};
}
values = values || {};
values["name"] = stanzaName;
return this._super(values, callback);
}
});
Creates a local instance of the default stanza in a configuration file. You cannot directly update the ConfigurationStanza
returned by this function.
This is equivalent to viewing configs/conf-{file}/_new
.
A new splunkjs.Service.ConfigurationStanza
instance.
getDefaultStanza: function() {
return new root.ConfigurationStanza(this.service, this.name, "default", this.namespace);
},
Constructor for splunkjs.Service.ConfigurationFile
.
Name | Type | Description |
---|---|---|
service | splunkjs.Service | A |
name | String | The name of the configuration file. |
namespace | Object | Namespace information: |
A new splunkjs.Service.ConfigurationFile
instance.
init: function(service, name, namespace) {
this.name = name;
this._super(service, this.path(), namespace);
},
Creates a local instance of a stanza in a configuration file.
Name | Type | Description |
---|---|---|
props | Object | The key-value properties for the new stanza. |
A new splunkjs.Service.ConfigurationStanza
instance.
instantiateEntity: function(props) {
var entityNamespace = utils.namespaceFromProperties(props);
return new root.ConfigurationStanza(this.service, this.name, props.name, entityNamespace);
},
Retrieves the REST endpoint path for this resource (with no namespace).
path: function() {
return Paths.configurations + "/conf-" + encodeURIComponent(this.name);
},
Performs a relative DELETE request on an endpoint's path, combined with the parameters and a relative path if specified.
Name | Type | Description |
---|---|---|
relpath | String | A relative path to append to the endpoint path. |
params | Object | A dictionary of entity-specific parameters to add to the query string. |
callback | Function | A function to call when the request is complete: |
// Will make a request to {service.prefix}/search/jobs/123456
var endpoint = new splunkjs.Service.Endpoint(service, "search/jobs/12345");
endpoint.delete("", {}, function() { console.log("DELETED"))});
del: function(relpath, params, callback) {
var url = this.qualifiedPath;
// If we have a relative path, we will append it with a preceding
// slash.
if (relpath) {
url = url + "/" + relpath;
}
return this.service.del(
url,
params,
callback
);
}
});
Refreshes the resource by fetching the object from the server and loading it.
Name | Type | Description |
---|---|---|
options | Object | A dictionary of collection filtering and pagination options: |
callback | Function | A function to call when the object is retrieved: |
fetch: function(options, callback) {
if (!callback && utils.isFunction(options)) {
callback = options;
options = {};
}
callback = callback || function() {};
options = options || {};
if (!options.count) {
options.count = 0;
}
var that = this;
var req = that.get("", options, function(err, response) {
if (err) {
callback(err);
}
else {
that._load(response.data);
callback(null, that);
}
});
return req;
},
It's an asynchronous version of fetch(options, callback) function.
Refreshes the resource by fetching the object from the server and loading it.
Name | Type | Description |
---|---|---|
options | Object | A dictionary of collection filtering and pagination options: |
fetchAsync: async function(options) {
options = options || {};
if (!options.count) {
options.count = 0;
}
var that = this;
var response = await that.get("", options, null, true);
that._load(response.body);
return that;
},
A static property that indicates whether to call fetch
after an entity has been created. By default, the entity is not fetched because the endpoint returns (echoes) the new entity.
fetchOnEntityCreation: false,
Performs a relative GET request on an endpoint's path, combined with the parameters and a relative path if specified.
Name | Type | Description |
---|---|---|
relpath | String | A relative path to append to the endpoint path. |
params | Object | A dictionary of entity-specific parameters to add to the query string. |
callback | Function | A function to call when the request is complete: |
// Will make a request to {service.prefix}/search/jobs/123456/results?offset=1
var endpoint = new splunkjs.Service.Endpoint(service, "search/jobs/12345");
endpoint.get("results", {offset: 1}, function() { console.log("DONE"))});
get: function(relpath, params, callback, isAsync) {
var url = this.qualifiedPath;
// If we have a relative path, we will append it with a preceding
// slash.
if (relpath) {
url = url + "/" + relpath;
}
return this.service.get(
url,
params,
callback,
isAsync
);
},
Returns a specific entity from the collection.
Name | Type | Description |
---|---|---|
id | String | The name of the entity to retrieve. |
namespace | Object | Namespace information: |
var apps = service.apps();
apps.fetch(function(err, apps) {
var app = apps.item("search");
console.log("Search App Found: " + !!app);
// `app` is an Application object.
});
item: function(id, namespace) {
if (utils.isEmpty(namespace)) {
namespace = null;
}
if (!id) {
throw new Error("Must suply a non-empty name.");
}
if (namespace && (namespace.app === '-' || namespace.owner === '-')) {
throw new Error("When searching for an entity, wildcards are not allowed in the namespace. Please refine your search.");
}
var fullPath = null;
if (this._entitiesByName.hasOwnProperty(id)) {
var entities = this._entitiesByName[id];
if (entities.length === 1 && !namespace) {
// If there is only one entity with the
// specified name and the user did not
// specify a namespace, then we just
// return it
return entities[0];
}
else if (entities.length === 1 && namespace) {
// If we specified a namespace, then we
// only return the entity if it matches
// the full path
fullPath = this.service.fullpath(entities[0].path(), namespace);
if (entities[0].qualifiedPath === fullPath) {
return entities[0];
}
else {
return null;
}
}
else if (entities.length > 1 && !namespace) {
// If there is more than one entity and we didn't
// specify a namespace, then we return an error
// saying the match is ambiguous
throw new Error("Ambiguous match for name '" + id + "'");
}
else {
// There is more than one entity, and we do have
// a namespace, so we try and find it
for(var i = 0; i < entities.length; i++) {
var entity = entities[i];
fullPath = this.service.fullpath(entities[i].path(), namespace);
if (entity.qualifiedPath === fullPath) {
return entity;
}
}
}
}
else {
return null;
}
},
Retrieves the links information for this collection, which is the URI of the resource relative to the management port of a Splunk instance.
The links information.
links: function() {
return this._links;
},
Retrieves a list of all entities in the collection.
Name | Type | Description |
---|---|---|
callback | Function | A function to call with the list of entities: |
var apps = service.apps();
apps.fetch(function(err, apps) {
var appList = apps.list();
console.log(appList.length);
});
list: function(callback) {
callback = callback || function() {};
return utils.clone(this._entities);
}
});
Retrieves the author information for this collection.
The author.
paging: function() {
return this._paging;
},
Performs a relative POST request on an endpoint's path, combined with the parameters and a relative path if specified.
Name | Type | Description |
---|---|---|
relpath | String | A relative path to append to the endpoint path. |
params | Object | A dictionary of entity-specific parameters to add to the body. |
callback | Function | A function to call when the request is complete: |
// Will make a request to {service.prefix}/search/jobs/123456/control
var endpoint = new splunkjs.Service.Endpoint(service, "search/jobs/12345");
endpoint.post("control", {action: "cancel"}, function() { console.log("CANCELLED"))});
post: function(relpath, params, callback) {
var url = this.qualifiedPath;
// If we have a relative path, we will append it with a preceding
// slash.
if (relpath) {
url = url + "/" + relpath;
}
return this.service.post(
url,
params,
callback
);
},
Retrieves the current properties for this resource.
The properties.
properties: function() {
return this._properties;
},
Retrieves the current full state (properties and metadata) of this resource.
The current full state of this resource.
state: function() {
return this._state;
}
});
Retrieves the updated time for this collection.
The updated time.
updated: function() {
return this._updated;
},