Class SecuritySettingsServiceClient (2.23.0-rc)

Service for managing security settings for Dialogflow.

Equality

Instances of this class created via copy-construction or copy-assignment always compare equal. Instances created with equal std::shared_ptr<*Connection> objects compare equal. Objects that compare equal share the same underlying resources.

Performance

Creating a new instance of this class is a relatively expensive operation, new objects establish new connections to the service. In contrast, copy-construction, move-construction, and the corresponding assignment operations are relatively efficient as the copies share all underlying resources.

Thread Safety

Concurrent access to different instances of this class, even if they compare equal, is guaranteed to work. Two or more threads operating on the same instance of this class is not guaranteed to work. Since copy-construction and move-construction is a relatively efficient operation, consider using such a copy when using this class from multiple threads.

Constructors

SecuritySettingsServiceClient(SecuritySettingsServiceClient const &)

Copy and move support

Parameter
NameDescription
SecuritySettingsServiceClient const &

SecuritySettingsServiceClient(SecuritySettingsServiceClient &&)

Copy and move support

Parameter
NameDescription
SecuritySettingsServiceClient &&

SecuritySettingsServiceClient(std::shared_ptr< SecuritySettingsServiceConnection >, Options)

Parameters
NameDescription
connection std::shared_ptr< SecuritySettingsServiceConnection >
opts Options

Operators

operator=(SecuritySettingsServiceClient const &)

Copy and move support

Parameter
NameDescription
SecuritySettingsServiceClient const &
Returns
TypeDescription
SecuritySettingsServiceClient &

operator=(SecuritySettingsServiceClient &&)

Copy and move support

Parameter
NameDescription
SecuritySettingsServiceClient &&
Returns
TypeDescription
SecuritySettingsServiceClient &

Functions

CreateSecuritySettings(std::string const &, google::cloud::dialogflow::cx::v3::SecuritySettings const &, Options)

Create security settings in the specified location.

Parameters
NameDescription
parent std::string const &

Required. The location to create an SecuritySettings for. Format: projects/<ProjectID>/locations/<LocationID>.

security_settings google::cloud::dialogflow::cx::v3::SecuritySettings const &

Required. The security settings to create.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
StatusOr< google::cloud::dialogflow::cx::v3::SecuritySettings >

the result of the RPC. The response message type (google.cloud.dialogflow.cx.v3.SecuritySettings) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the StatusOr contains the error details.

CreateSecuritySettings(google::cloud::dialogflow::cx::v3::CreateSecuritySettingsRequest const &, Options)

Create security settings in the specified location.

Parameters
NameDescription
request google::cloud::dialogflow::cx::v3::CreateSecuritySettingsRequest const &

Unary RPCs, such as the one wrapped by this function, receive a single request proto message which includes all the inputs for the RPC. In this case, the proto message is a google.cloud.dialogflow.cx.v3.CreateSecuritySettingsRequest. Proto messages are converted to C++ classes by Protobuf, using the Protobuf mapping rules.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
StatusOr< google::cloud::dialogflow::cx::v3::SecuritySettings >

the result of the RPC. The response message type (google.cloud.dialogflow.cx.v3.SecuritySettings) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the StatusOr contains the error details.

GetSecuritySettings(std::string const &, Options)

Retrieves the specified SecuritySettings.

The returned settings may be stale by up to 1 minute.

Parameters
NameDescription
name std::string const &

Required. Resource name of the settings. Format: projects/<ProjectID>/locations/<LocationID>/securitySettings/<security settings ID>.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
StatusOr< google::cloud::dialogflow::cx::v3::SecuritySettings >

the result of the RPC. The response message type (google.cloud.dialogflow.cx.v3.SecuritySettings) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the StatusOr contains the error details.

GetSecuritySettings(google::cloud::dialogflow::cx::v3::GetSecuritySettingsRequest const &, Options)

Retrieves the specified SecuritySettings.

The returned settings may be stale by up to 1 minute.

Parameters
NameDescription
request google::cloud::dialogflow::cx::v3::GetSecuritySettingsRequest const &

Unary RPCs, such as the one wrapped by this function, receive a single request proto message which includes all the inputs for the RPC. In this case, the proto message is a google.cloud.dialogflow.cx.v3.GetSecuritySettingsRequest. Proto messages are converted to C++ classes by Protobuf, using the Protobuf mapping rules.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
StatusOr< google::cloud::dialogflow::cx::v3::SecuritySettings >

the result of the RPC. The response message type (google.cloud.dialogflow.cx.v3.SecuritySettings) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the StatusOr contains the error details.

UpdateSecuritySettings(google::cloud::dialogflow::cx::v3::SecuritySettings const &, google::protobuf::FieldMask const &, Options)

Updates the specified SecuritySettings.

Parameters
NameDescription
security_settings google::cloud::dialogflow::cx::v3::SecuritySettings const &

Required. [SecuritySettings] object that contains values for each of the fields to update.

update_mask google::protobuf::FieldMask const &

Required. The mask to control which fields get updated. If the mask is not present, all fields will be updated.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
StatusOr< google::cloud::dialogflow::cx::v3::SecuritySettings >

the result of the RPC. The response message type (google.cloud.dialogflow.cx.v3.SecuritySettings) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the StatusOr contains the error details.

UpdateSecuritySettings(google::cloud::dialogflow::cx::v3::UpdateSecuritySettingsRequest const &, Options)

Updates the specified SecuritySettings.

Parameters
NameDescription
request google::cloud::dialogflow::cx::v3::UpdateSecuritySettingsRequest const &

Unary RPCs, such as the one wrapped by this function, receive a single request proto message which includes all the inputs for the RPC. In this case, the proto message is a google.cloud.dialogflow.cx.v3.UpdateSecuritySettingsRequest. Proto messages are converted to C++ classes by Protobuf, using the Protobuf mapping rules.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
StatusOr< google::cloud::dialogflow::cx::v3::SecuritySettings >

the result of the RPC. The response message type (google.cloud.dialogflow.cx.v3.SecuritySettings) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the StatusOr contains the error details.

ListSecuritySettings(std::string const &, Options)

Returns the list of all security settings in the specified location.

Parameters
NameDescription
parent std::string const &

Required. The location to list all security settings for. Format: projects/<ProjectID>/locations/<LocationID>.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
StreamRange< google::cloud::dialogflow::cx::v3::SecuritySettings >

a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has begin() and end() member functions returning a iterator class meeting the input iterator requirements. The value type for this iterator is a StatusOr as the iteration may fail even after some values are retrieved successfully, for example, if there is a network disconnect. An empty set of results does not indicate an error, it indicates that there are no resources meeting the request criteria. On a successful iteration the StatusOr<T> contains elements of type google.cloud.dialogflow.cx.v3.SecuritySettings, or rather, the C++ class generated by Protobuf from that type. Please consult the Protobuf documentation for details on the Protobuf mapping rules.

ListSecuritySettings(google::cloud::dialogflow::cx::v3::ListSecuritySettingsRequest, Options)

Returns the list of all security settings in the specified location.

Parameters
NameDescription
request google::cloud::dialogflow::cx::v3::ListSecuritySettingsRequest

Unary RPCs, such as the one wrapped by this function, receive a single request proto message which includes all the inputs for the RPC. In this case, the proto message is a google.cloud.dialogflow.cx.v3.ListSecuritySettingsRequest. Proto messages are converted to C++ classes by Protobuf, using the Protobuf mapping rules.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
StreamRange< google::cloud::dialogflow::cx::v3::SecuritySettings >

a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has begin() and end() member functions returning a iterator class meeting the input iterator requirements. The value type for this iterator is a StatusOr as the iteration may fail even after some values are retrieved successfully, for example, if there is a network disconnect. An empty set of results does not indicate an error, it indicates that there are no resources meeting the request criteria. On a successful iteration the StatusOr<T> contains elements of type google.cloud.dialogflow.cx.v3.SecuritySettings, or rather, the C++ class generated by Protobuf from that type. Please consult the Protobuf documentation for details on the Protobuf mapping rules.

DeleteSecuritySettings(std::string const &, Options)

Deletes the specified SecuritySettings.

Parameters
NameDescription
name std::string const &

Required. The name of the SecuritySettings to delete. Format: projects/<ProjectID>/locations/<LocationID>/securitySettings/<Security Settings ID>.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
Status

a Status object. If the request failed, the status contains the details of the failure.

DeleteSecuritySettings(google::cloud::dialogflow::cx::v3::DeleteSecuritySettingsRequest const &, Options)

Deletes the specified SecuritySettings.

Parameters
NameDescription
request google::cloud::dialogflow::cx::v3::DeleteSecuritySettingsRequest const &

Unary RPCs, such as the one wrapped by this function, receive a single request proto message which includes all the inputs for the RPC. In this case, the proto message is a google.cloud.dialogflow.cx.v3.DeleteSecuritySettingsRequest. Proto messages are converted to C++ classes by Protobuf, using the Protobuf mapping rules.

opts Options

Optional. Override the class-level options, such as retry and backoff policies.

Returns
TypeDescription
Status

a Status object. If the request failed, the status contains the details of the failure.