📄 Source: EventFilter.php
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Eventarc;
class EventFilter extends \Google\Model
{
/**
* Required. The name of a CloudEvents attribute. Currently, only a subset of
* attributes are supported for filtering. You can [retrieve a specific
* provider's supported event types](/eventarc/docs/list-providers#describe-
* provider). All triggers MUST provide a filter for the 'type' attribute.
*
* @var string
*/
public $attribute;
/**
* Optional. The operator used for matching the events with the value of the
* filter. If not specified, only events that have an exact key-value pair
* specified in the filter are matched. The allowed values are `path_pattern`
* and `match-path-pattern`. `path_pattern` is only allowed for GCFv1
* triggers.
*
* @var string
*/
public $operator;
/**
* Required. The value for the attribute.
*
* @var string
*/
public $value;
/**
* Required. The name of a CloudEvents attribute. Currently, only a subset of
* attributes are supported for filtering. You can [retrieve a specific
* provider's supported event types](/eventarc/docs/list-providers#describe-
* provider). All triggers MUST provide a filter for the 'type' attribute.
*
* @param string $attribute
*/
public function setAttribute($attribute)
{
$this->attribute = $attribute;
}
/**
* @return string
*/
public function getAttribute()
{
return $this->attribute;
}
/**
* Optional. The operator used for matching the events with the value of the
* filter. If not specified, only events that have an exact key-value pair
* specified in the filter are matched. The allowed values are `path_pattern`
* and `match-path-pattern`. `path_pattern` is only allowed for GCFv1
* triggers.
*
* @param string $operator
*/
public function setOperator($operator)
{
$this->operator = $operator;
}
/**
* @return string
*/
public function getOperator()
{
return $this->operator;
}
/**
* Required. The value for the attribute.
*
* @param string $value
*/
public function setValue($value)
{
$this->value = $value;
}
/**
* @return string
*/
public function getValue()
{
return $this->value;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(EventFilter::class, 'Google_Service_Eventarc_EventFilter');
← Back