code
stringlengths 17
296k
| docstring
stringlengths 30
30.3k
| func_name
stringlengths 1
89
| language
stringclasses 1
value | repo
stringlengths 7
63
| path
stringlengths 7
153
| url
stringlengths 51
209
| license
stringclasses 4
values |
---|---|---|---|---|---|---|---|
public static function getters()
{
return self::$getters;
} | Array of attributes to getter functions (for serialization of requests)
@return array | getters | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/ShardOwner.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/ShardOwner.php | MIT |
public function getModelName()
{
return self::$openAPIModelName;
} | The original name of the model.
@return string | getModelName | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/ShardOwner.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/ShardOwner.php | MIT |
public function __construct(array $data = null)
{
$this->container['node_id'] = isset($data['node_id']) ? $data['node_id'] : null;
} | Constructor
@param mixed[] $data Associated array of property values
initializing the model | __construct | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/ShardOwner.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/ShardOwner.php | MIT |
public function listInvalidProperties()
{
$invalidProperties = [];
if ($this->container['node_id'] === null) {
$invalidProperties[] = "'node_id' can't be null";
}
return $invalidProperties;
} | Show all the invalid properties with reasons.
@return array invalid properties with reasons | listInvalidProperties | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/ShardOwner.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/ShardOwner.php | MIT |
public function valid()
{
return count($this->listInvalidProperties()) === 0;
} | Validate all the properties in the model
return true if all passed
@return bool True if all properties are valid | valid | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/ShardOwner.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/ShardOwner.php | MIT |
public function __toString()
{
return json_encode(
ObjectSerializer::sanitizeForSerialization($this),
JSON_PRETTY_PRINT
);
} | Gets the string presentation of the object
@return string | __toString | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/ShardOwner.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/ShardOwner.php | MIT |
public static function openAPITypes()
{
return self::$openAPITypes;
} | Array of property to type mappings. Used for (de)serialization
@return array | openAPITypes | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/TelegrafPluginRequest.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/TelegrafPluginRequest.php | MIT |
public static function openAPIFormats()
{
return self::$openAPIFormats;
} | Array of property to format mappings. Used for (de)serialization
@return array | openAPIFormats | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/TelegrafPluginRequest.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/TelegrafPluginRequest.php | MIT |
public static function attributeMap()
{
return self::$attributeMap;
} | Array of attributes where the key is the local name,
and the value is the original name
@return array | attributeMap | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/TelegrafPluginRequest.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/TelegrafPluginRequest.php | MIT |
public static function setters()
{
return self::$setters;
} | Array of attributes to setter functions (for deserialization of responses)
@return array | setters | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/TelegrafPluginRequest.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/TelegrafPluginRequest.php | MIT |
public static function getters()
{
return self::$getters;
} | Array of attributes to getter functions (for serialization of requests)
@return array | getters | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/TelegrafPluginRequest.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/TelegrafPluginRequest.php | MIT |
public function getModelName()
{
return self::$openAPIModelName;
} | The original name of the model.
@return string | getModelName | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/TelegrafPluginRequest.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/TelegrafPluginRequest.php | MIT |
public function __construct(array $data = null)
{
$this->container['name'] = isset($data['name']) ? $data['name'] : null;
$this->container['description'] = isset($data['description']) ? $data['description'] : null;
$this->container['plugins'] = isset($data['plugins']) ? $data['plugins'] : null;
$this->container['metadata'] = isset($data['metadata']) ? $data['metadata'] : null;
$this->container['config'] = isset($data['config']) ? $data['config'] : null;
$this->container['org_id'] = isset($data['org_id']) ? $data['org_id'] : null;
} | Constructor
@param mixed[] $data Associated array of property values
initializing the model | __construct | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/TelegrafPluginRequest.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/TelegrafPluginRequest.php | MIT |
public function listInvalidProperties()
{
$invalidProperties = [];
return $invalidProperties;
} | Show all the invalid properties with reasons.
@return array invalid properties with reasons | listInvalidProperties | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/TelegrafPluginRequest.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/TelegrafPluginRequest.php | MIT |
public function valid()
{
return count($this->listInvalidProperties()) === 0;
} | Validate all the properties in the model
return true if all passed
@return bool True if all properties are valid | valid | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/TelegrafPluginRequest.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/TelegrafPluginRequest.php | MIT |
public function __toString()
{
return json_encode(
ObjectSerializer::sanitizeForSerialization($this),
JSON_PRETTY_PRINT
);
} | Gets the string presentation of the object
@return string | __toString | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/TelegrafPluginRequest.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/TelegrafPluginRequest.php | MIT |
public static function openAPITypes()
{
return self::$openAPITypes;
} | Array of property to type mappings. Used for (de)serialization
@return array | openAPITypes | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/ReplicationCreationRequest.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/ReplicationCreationRequest.php | MIT |
public static function openAPIFormats()
{
return self::$openAPIFormats;
} | Array of property to format mappings. Used for (de)serialization
@return array | openAPIFormats | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/ReplicationCreationRequest.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/ReplicationCreationRequest.php | MIT |
public static function attributeMap()
{
return self::$attributeMap;
} | Array of attributes where the key is the local name,
and the value is the original name
@return array | attributeMap | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/ReplicationCreationRequest.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/ReplicationCreationRequest.php | MIT |
public static function setters()
{
return self::$setters;
} | Array of attributes to setter functions (for deserialization of responses)
@return array | setters | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/ReplicationCreationRequest.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/ReplicationCreationRequest.php | MIT |
public static function getters()
{
return self::$getters;
} | Array of attributes to getter functions (for serialization of requests)
@return array | getters | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/ReplicationCreationRequest.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/ReplicationCreationRequest.php | MIT |
public function getModelName()
{
return self::$openAPIModelName;
} | The original name of the model.
@return string | getModelName | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/ReplicationCreationRequest.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/ReplicationCreationRequest.php | MIT |
public function __construct(array $data = null)
{
$this->container['name'] = isset($data['name']) ? $data['name'] : null;
$this->container['description'] = isset($data['description']) ? $data['description'] : null;
$this->container['org_id'] = isset($data['org_id']) ? $data['org_id'] : null;
$this->container['remote_id'] = isset($data['remote_id']) ? $data['remote_id'] : null;
$this->container['local_bucket_id'] = isset($data['local_bucket_id']) ? $data['local_bucket_id'] : null;
$this->container['remote_bucket_id'] = isset($data['remote_bucket_id']) ? $data['remote_bucket_id'] : null;
$this->container['remote_bucket_name'] = isset($data['remote_bucket_name']) ? $data['remote_bucket_name'] : null;
$this->container['max_queue_size_bytes'] = isset($data['max_queue_size_bytes']) ? $data['max_queue_size_bytes'] : 67108860;
$this->container['drop_non_retryable_data'] = isset($data['drop_non_retryable_data']) ? $data['drop_non_retryable_data'] : false;
$this->container['max_age_seconds'] = isset($data['max_age_seconds']) ? $data['max_age_seconds'] : 604800;
} | Constructor
@param mixed[] $data Associated array of property values
initializing the model | __construct | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/ReplicationCreationRequest.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/ReplicationCreationRequest.php | MIT |
public function listInvalidProperties()
{
$invalidProperties = [];
if ($this->container['name'] === null) {
$invalidProperties[] = "'name' can't be null";
}
if ($this->container['org_id'] === null) {
$invalidProperties[] = "'org_id' can't be null";
}
if ($this->container['remote_id'] === null) {
$invalidProperties[] = "'remote_id' can't be null";
}
if ($this->container['local_bucket_id'] === null) {
$invalidProperties[] = "'local_bucket_id' can't be null";
}
if ($this->container['max_queue_size_bytes'] === null) {
$invalidProperties[] = "'max_queue_size_bytes' can't be null";
}
if (($this->container['max_queue_size_bytes'] < 33554430)) {
$invalidProperties[] = "invalid value for 'max_queue_size_bytes', must be bigger than or equal to 33554430.";
}
if ($this->container['max_age_seconds'] === null) {
$invalidProperties[] = "'max_age_seconds' can't be null";
}
if (($this->container['max_age_seconds'] < 0)) {
$invalidProperties[] = "invalid value for 'max_age_seconds', must be bigger than or equal to 0.";
}
return $invalidProperties;
} | Show all the invalid properties with reasons.
@return array invalid properties with reasons | listInvalidProperties | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/ReplicationCreationRequest.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/ReplicationCreationRequest.php | MIT |
public function valid()
{
return count($this->listInvalidProperties()) === 0;
} | Validate all the properties in the model
return true if all passed
@return bool True if all properties are valid | valid | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/ReplicationCreationRequest.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/ReplicationCreationRequest.php | MIT |
public function __toString()
{
return json_encode(
ObjectSerializer::sanitizeForSerialization($this),
JSON_PRETTY_PRINT
);
} | Gets the string presentation of the object
@return string | __toString | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/ReplicationCreationRequest.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/ReplicationCreationRequest.php | MIT |
public static function openAPITypes()
{
return self::$openAPITypes;
} | Array of property to type mappings. Used for (de)serialization
@return array | openAPITypes | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/Config.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/Config.php | MIT |
public static function openAPIFormats()
{
return self::$openAPIFormats;
} | Array of property to format mappings. Used for (de)serialization
@return array | openAPIFormats | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/Config.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/Config.php | MIT |
public static function attributeMap()
{
return self::$attributeMap;
} | Array of attributes where the key is the local name,
and the value is the original name
@return array | attributeMap | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/Config.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/Config.php | MIT |
public static function setters()
{
return self::$setters;
} | Array of attributes to setter functions (for deserialization of responses)
@return array | setters | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/Config.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/Config.php | MIT |
public static function getters()
{
return self::$getters;
} | Array of attributes to getter functions (for serialization of requests)
@return array | getters | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/Config.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/Config.php | MIT |
public function getModelName()
{
return self::$openAPIModelName;
} | The original name of the model.
@return string | getModelName | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/Config.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/Config.php | MIT |
public function __construct(array $data = null)
{
$this->container['config'] = isset($data['config']) ? $data['config'] : null;
} | Constructor
@param mixed[] $data Associated array of property values
initializing the model | __construct | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/Config.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/Config.php | MIT |
public function listInvalidProperties()
{
$invalidProperties = [];
return $invalidProperties;
} | Show all the invalid properties with reasons.
@return array invalid properties with reasons | listInvalidProperties | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/Config.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/Config.php | MIT |
public function valid()
{
return count($this->listInvalidProperties()) === 0;
} | Validate all the properties in the model
return true if all passed
@return bool True if all properties are valid | valid | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/Config.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/Config.php | MIT |
public function __toString()
{
return json_encode(
ObjectSerializer::sanitizeForSerialization($this),
JSON_PRETTY_PRINT
);
} | Gets the string presentation of the object
@return string | __toString | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/Config.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/Config.php | MIT |
public static function openAPITypes()
{
return self::$openAPITypes;
} | Array of property to type mappings. Used for (de)serialization
@return array | openAPITypes | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/Error.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/Error.php | MIT |
public static function openAPIFormats()
{
return self::$openAPIFormats;
} | Array of property to format mappings. Used for (de)serialization
@return array | openAPIFormats | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/Error.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/Error.php | MIT |
public static function attributeMap()
{
return self::$attributeMap;
} | Array of attributes where the key is the local name,
and the value is the original name
@return array | attributeMap | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/Error.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/Error.php | MIT |
public static function setters()
{
return self::$setters;
} | Array of attributes to setter functions (for deserialization of responses)
@return array | setters | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/Error.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/Error.php | MIT |
public static function getters()
{
return self::$getters;
} | Array of attributes to getter functions (for serialization of requests)
@return array | getters | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/Error.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/Error.php | MIT |
public function getModelName()
{
return self::$openAPIModelName;
} | The original name of the model.
@return string | getModelName | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/Error.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/Error.php | MIT |
public function getCodeAllowableValues()
{
return [
self::CODE_INTERNAL_ERROR,
self::CODE_NOT_FOUND,
self::CODE_CONFLICT,
self::CODE_INVALID,
self::CODE_UNPROCESSABLE_ENTITY,
self::CODE_EMPTY_VALUE,
self::CODE_UNAVAILABLE,
self::CODE_FORBIDDEN,
self::CODE_TOO_MANY_REQUESTS,
self::CODE_UNAUTHORIZED,
self::CODE_METHOD_NOT_ALLOWED,
self::CODE_REQUEST_TOO_LARGE,
self::CODE_UNSUPPORTED_MEDIA_TYPE,
];
} | Gets allowable values of the enum
@return string[] | getCodeAllowableValues | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/Error.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/Error.php | MIT |
public function __construct(array $data = null)
{
$this->container['code'] = isset($data['code']) ? $data['code'] : null;
$this->container['message'] = isset($data['message']) ? $data['message'] : null;
$this->container['op'] = isset($data['op']) ? $data['op'] : null;
$this->container['err'] = isset($data['err']) ? $data['err'] : null;
} | Constructor
@param mixed[] $data Associated array of property values
initializing the model | __construct | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/Error.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/Error.php | MIT |
public function listInvalidProperties()
{
$invalidProperties = [];
if ($this->container['code'] === null) {
$invalidProperties[] = "'code' can't be null";
}
$allowedValues = $this->getCodeAllowableValues();
if (!is_null($this->container['code']) && !in_array($this->container['code'], $allowedValues, true)) {
$invalidProperties[] = sprintf(
"invalid value for 'code', must be one of '%s'",
implode("', '", $allowedValues)
);
}
return $invalidProperties;
} | Show all the invalid properties with reasons.
@return array invalid properties with reasons | listInvalidProperties | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/Error.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/Error.php | MIT |
public function valid()
{
return count($this->listInvalidProperties()) === 0;
} | Validate all the properties in the model
return true if all passed
@return bool True if all properties are valid | valid | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/Error.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/Error.php | MIT |
public function __toString()
{
return json_encode(
ObjectSerializer::sanitizeForSerialization($this),
JSON_PRETTY_PRINT
);
} | Gets the string presentation of the object
@return string | __toString | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/Error.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/Error.php | MIT |
public static function openAPITypes()
{
return self::$openAPITypes;
} | Array of property to type mappings. Used for (de)serialization
@return array | openAPITypes | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/TemplateSummaryLabel.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/TemplateSummaryLabel.php | MIT |
public static function openAPIFormats()
{
return self::$openAPIFormats;
} | Array of property to format mappings. Used for (de)serialization
@return array | openAPIFormats | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/TemplateSummaryLabel.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/TemplateSummaryLabel.php | MIT |
public static function attributeMap()
{
return self::$attributeMap;
} | Array of attributes where the key is the local name,
and the value is the original name
@return array | attributeMap | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/TemplateSummaryLabel.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/TemplateSummaryLabel.php | MIT |
public static function setters()
{
return self::$setters;
} | Array of attributes to setter functions (for deserialization of responses)
@return array | setters | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/TemplateSummaryLabel.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/TemplateSummaryLabel.php | MIT |
public static function getters()
{
return self::$getters;
} | Array of attributes to getter functions (for serialization of requests)
@return array | getters | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/TemplateSummaryLabel.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/TemplateSummaryLabel.php | MIT |
public function getModelName()
{
return self::$openAPIModelName;
} | The original name of the model.
@return string | getModelName | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/TemplateSummaryLabel.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/TemplateSummaryLabel.php | MIT |
public function __construct(array $data = null)
{
$this->container['id'] = isset($data['id']) ? $data['id'] : null;
$this->container['org_id'] = isset($data['org_id']) ? $data['org_id'] : null;
$this->container['kind'] = isset($data['kind']) ? $data['kind'] : null;
$this->container['template_meta_name'] = isset($data['template_meta_name']) ? $data['template_meta_name'] : null;
$this->container['name'] = isset($data['name']) ? $data['name'] : null;
$this->container['properties'] = isset($data['properties']) ? $data['properties'] : null;
$this->container['env_references'] = isset($data['env_references']) ? $data['env_references'] : null;
} | Constructor
@param mixed[] $data Associated array of property values
initializing the model | __construct | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/TemplateSummaryLabel.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/TemplateSummaryLabel.php | MIT |
public function listInvalidProperties()
{
$invalidProperties = [];
return $invalidProperties;
} | Show all the invalid properties with reasons.
@return array invalid properties with reasons | listInvalidProperties | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/TemplateSummaryLabel.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/TemplateSummaryLabel.php | MIT |
public function valid()
{
return count($this->listInvalidProperties()) === 0;
} | Validate all the properties in the model
return true if all passed
@return bool True if all properties are valid | valid | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/TemplateSummaryLabel.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/TemplateSummaryLabel.php | MIT |
public function __toString()
{
return json_encode(
ObjectSerializer::sanitizeForSerialization($this),
JSON_PRETTY_PRINT
);
} | Gets the string presentation of the object
@return string | __toString | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/TemplateSummaryLabel.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/TemplateSummaryLabel.php | MIT |
public static function openAPITypes()
{
return self::$openAPITypes;
} | Array of property to type mappings. Used for (de)serialization
@return array | openAPITypes | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/TemplateSummaryDiffVariablesNewOld.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/TemplateSummaryDiffVariablesNewOld.php | MIT |
public static function openAPIFormats()
{
return self::$openAPIFormats;
} | Array of property to format mappings. Used for (de)serialization
@return array | openAPIFormats | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/TemplateSummaryDiffVariablesNewOld.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/TemplateSummaryDiffVariablesNewOld.php | MIT |
public static function attributeMap()
{
return self::$attributeMap;
} | Array of attributes where the key is the local name,
and the value is the original name
@return array | attributeMap | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/TemplateSummaryDiffVariablesNewOld.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/TemplateSummaryDiffVariablesNewOld.php | MIT |
public static function setters()
{
return self::$setters;
} | Array of attributes to setter functions (for deserialization of responses)
@return array | setters | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/TemplateSummaryDiffVariablesNewOld.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/TemplateSummaryDiffVariablesNewOld.php | MIT |
public static function getters()
{
return self::$getters;
} | Array of attributes to getter functions (for serialization of requests)
@return array | getters | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/TemplateSummaryDiffVariablesNewOld.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/TemplateSummaryDiffVariablesNewOld.php | MIT |
public function getModelName()
{
return self::$openAPIModelName;
} | The original name of the model.
@return string | getModelName | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/TemplateSummaryDiffVariablesNewOld.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/TemplateSummaryDiffVariablesNewOld.php | MIT |
public function __construct(array $data = null)
{
$this->container['name'] = isset($data['name']) ? $data['name'] : null;
$this->container['description'] = isset($data['description']) ? $data['description'] : null;
$this->container['args'] = isset($data['args']) ? $data['args'] : null;
} | Constructor
@param mixed[] $data Associated array of property values
initializing the model | __construct | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/TemplateSummaryDiffVariablesNewOld.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/TemplateSummaryDiffVariablesNewOld.php | MIT |
public function listInvalidProperties()
{
$invalidProperties = [];
return $invalidProperties;
} | Show all the invalid properties with reasons.
@return array invalid properties with reasons | listInvalidProperties | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/TemplateSummaryDiffVariablesNewOld.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/TemplateSummaryDiffVariablesNewOld.php | MIT |
public function valid()
{
return count($this->listInvalidProperties()) === 0;
} | Validate all the properties in the model
return true if all passed
@return bool True if all properties are valid | valid | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/TemplateSummaryDiffVariablesNewOld.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/TemplateSummaryDiffVariablesNewOld.php | MIT |
public function __toString()
{
return json_encode(
ObjectSerializer::sanitizeForSerialization($this),
JSON_PRETTY_PRINT
);
} | Gets the string presentation of the object
@return string | __toString | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/TemplateSummaryDiffVariablesNewOld.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/TemplateSummaryDiffVariablesNewOld.php | MIT |
public static function openAPITypes()
{
return self::$openAPITypes + parent::openAPITypes();
} | Array of property to type mappings. Used for (de)serialization
@return array | openAPITypes | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/BooleanLiteral.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/BooleanLiteral.php | MIT |
public static function openAPIFormats()
{
return self::$openAPIFormats + parent::openAPIFormats();
} | Array of property to format mappings. Used for (de)serialization
@return array | openAPIFormats | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/BooleanLiteral.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/BooleanLiteral.php | MIT |
public static function attributeMap()
{
return parent::attributeMap() + self::$attributeMap;
} | Array of attributes where the key is the local name,
and the value is the original name
@return array | attributeMap | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/BooleanLiteral.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/BooleanLiteral.php | MIT |
public static function setters()
{
return parent::setters() + self::$setters;
} | Array of attributes to setter functions (for deserialization of responses)
@return array | setters | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/BooleanLiteral.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/BooleanLiteral.php | MIT |
public static function getters()
{
return parent::getters() + self::$getters;
} | Array of attributes to getter functions (for serialization of requests)
@return array | getters | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/BooleanLiteral.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/BooleanLiteral.php | MIT |
public function getModelName()
{
return self::$openAPIModelName;
} | The original name of the model.
@return string | getModelName | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/BooleanLiteral.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/BooleanLiteral.php | MIT |
public function __construct(array $data = null)
{
parent::__construct($data);
$this->container['type'] = isset($data['type']) ? $data['type'] : null;
$this->container['value'] = isset($data['value']) ? $data['value'] : null;
} | Constructor
@param mixed[] $data Associated array of property values
initializing the model | __construct | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/BooleanLiteral.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/BooleanLiteral.php | MIT |
public function listInvalidProperties()
{
$invalidProperties = parent::listInvalidProperties();
return $invalidProperties;
} | Show all the invalid properties with reasons.
@return array invalid properties with reasons | listInvalidProperties | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/BooleanLiteral.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/BooleanLiteral.php | MIT |
public function valid()
{
return count($this->listInvalidProperties()) === 0;
} | Validate all the properties in the model
return true if all passed
@return bool True if all properties are valid | valid | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/BooleanLiteral.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/BooleanLiteral.php | MIT |
public function __toString()
{
return json_encode(
ObjectSerializer::sanitizeForSerialization($this),
JSON_PRETTY_PRINT
);
} | Gets the string presentation of the object
@return string | __toString | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/BooleanLiteral.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/BooleanLiteral.php | MIT |
public static function openAPITypes()
{
return self::$openAPITypes;
} | Array of property to type mappings. Used for (de)serialization
@return array | openAPITypes | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/DBRPUpdate.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/DBRPUpdate.php | MIT |
public static function openAPIFormats()
{
return self::$openAPIFormats;
} | Array of property to format mappings. Used for (de)serialization
@return array | openAPIFormats | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/DBRPUpdate.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/DBRPUpdate.php | MIT |
public static function attributeMap()
{
return self::$attributeMap;
} | Array of attributes where the key is the local name,
and the value is the original name
@return array | attributeMap | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/DBRPUpdate.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/DBRPUpdate.php | MIT |
public static function setters()
{
return self::$setters;
} | Array of attributes to setter functions (for deserialization of responses)
@return array | setters | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/DBRPUpdate.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/DBRPUpdate.php | MIT |
public static function getters()
{
return self::$getters;
} | Array of attributes to getter functions (for serialization of requests)
@return array | getters | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/DBRPUpdate.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/DBRPUpdate.php | MIT |
public function getModelName()
{
return self::$openAPIModelName;
} | The original name of the model.
@return string | getModelName | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/DBRPUpdate.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/DBRPUpdate.php | MIT |
public function __construct(array $data = null)
{
$this->container['retention_policy'] = isset($data['retention_policy']) ? $data['retention_policy'] : null;
$this->container['default'] = isset($data['default']) ? $data['default'] : null;
} | Constructor
@param mixed[] $data Associated array of property values
initializing the model | __construct | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/DBRPUpdate.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/DBRPUpdate.php | MIT |
public function listInvalidProperties()
{
$invalidProperties = [];
return $invalidProperties;
} | Show all the invalid properties with reasons.
@return array invalid properties with reasons | listInvalidProperties | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/DBRPUpdate.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/DBRPUpdate.php | MIT |
public function valid()
{
return count($this->listInvalidProperties()) === 0;
} | Validate all the properties in the model
return true if all passed
@return bool True if all properties are valid | valid | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/DBRPUpdate.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/DBRPUpdate.php | MIT |
public function __toString()
{
return json_encode(
ObjectSerializer::sanitizeForSerialization($this),
JSON_PRETTY_PRINT
);
} | Gets the string presentation of the object
@return string | __toString | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/DBRPUpdate.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/DBRPUpdate.php | MIT |
public static function openAPITypes()
{
return self::$openAPITypes + parent::openAPITypes();
} | Array of property to type mappings. Used for (de)serialization
@return array | openAPITypes | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/ObjectExpression.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/ObjectExpression.php | MIT |
public static function openAPIFormats()
{
return self::$openAPIFormats + parent::openAPIFormats();
} | Array of property to format mappings. Used for (de)serialization
@return array | openAPIFormats | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/ObjectExpression.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/ObjectExpression.php | MIT |
public static function attributeMap()
{
return parent::attributeMap() + self::$attributeMap;
} | Array of attributes where the key is the local name,
and the value is the original name
@return array | attributeMap | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/ObjectExpression.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/ObjectExpression.php | MIT |
public static function setters()
{
return parent::setters() + self::$setters;
} | Array of attributes to setter functions (for deserialization of responses)
@return array | setters | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/ObjectExpression.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/ObjectExpression.php | MIT |
public static function getters()
{
return parent::getters() + self::$getters;
} | Array of attributes to getter functions (for serialization of requests)
@return array | getters | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/ObjectExpression.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/ObjectExpression.php | MIT |
public function getModelName()
{
return self::$openAPIModelName;
} | The original name of the model.
@return string | getModelName | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/ObjectExpression.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/ObjectExpression.php | MIT |
public function __construct(array $data = null)
{
parent::__construct($data);
$this->container['type'] = isset($data['type']) ? $data['type'] : null;
$this->container['properties'] = isset($data['properties']) ? $data['properties'] : null;
} | Constructor
@param mixed[] $data Associated array of property values
initializing the model | __construct | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/ObjectExpression.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/ObjectExpression.php | MIT |
public function listInvalidProperties()
{
$invalidProperties = parent::listInvalidProperties();
return $invalidProperties;
} | Show all the invalid properties with reasons.
@return array invalid properties with reasons | listInvalidProperties | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/ObjectExpression.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/ObjectExpression.php | MIT |
public function valid()
{
return count($this->listInvalidProperties()) === 0;
} | Validate all the properties in the model
return true if all passed
@return bool True if all properties are valid | valid | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/ObjectExpression.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/ObjectExpression.php | MIT |
public function __toString()
{
return json_encode(
ObjectSerializer::sanitizeForSerialization($this),
JSON_PRETTY_PRINT
);
} | Gets the string presentation of the object
@return string | __toString | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/ObjectExpression.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/ObjectExpression.php | MIT |
public static function openAPITypes()
{
return self::$openAPITypes;
} | Array of property to type mappings. Used for (de)serialization
@return array | openAPITypes | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/TemplateSummaryDiffLabels.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/TemplateSummaryDiffLabels.php | MIT |
public static function openAPIFormats()
{
return self::$openAPIFormats;
} | Array of property to format mappings. Used for (de)serialization
@return array | openAPIFormats | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/TemplateSummaryDiffLabels.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/TemplateSummaryDiffLabels.php | MIT |
public static function attributeMap()
{
return self::$attributeMap;
} | Array of attributes where the key is the local name,
and the value is the original name
@return array | attributeMap | php | influxdata/influxdb-client-php | src/InfluxDB2/Model/TemplateSummaryDiffLabels.php | https://github.com/influxdata/influxdb-client-php/blob/master/src/InfluxDB2/Model/TemplateSummaryDiffLabels.php | MIT |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.