Class: Grafeas::V1::SecretStatus
- Inherits:
-
Object
- Object
- Grafeas::V1::SecretStatus
- Extended by:
- Google::Protobuf::MessageExts::ClassMethods
- Includes:
- Google::Protobuf::MessageExts
- Defined in:
- proto_docs/grafeas/v1/secret.rb
Overview
The status of the secret with a timestamp.
Defined Under Namespace
Modules: Status
Instance Attribute Summary collapse
-
#message ⇒ ::String
Optional message about the status code.
-
#status ⇒ ::Grafeas::V1::SecretStatus::Status
The status of the secret.
-
#update_time ⇒ ::Google::Protobuf::Timestamp
The time the secret status was last updated.
Instance Attribute Details
#message ⇒ ::String
Returns Optional message about the status code.
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
# File 'proto_docs/grafeas/v1/secret.rb', line 69 class SecretStatus include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The status of the secret. module Status # Unspecified STATUS_UNSPECIFIED = 0 # The status of the secret is unknown. UNKNOWN = 1 # The secret is valid. VALID = 2 # The secret is invalid. INVALID = 3 end end |
#status ⇒ ::Grafeas::V1::SecretStatus::Status
Returns The status of the secret.
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
# File 'proto_docs/grafeas/v1/secret.rb', line 69 class SecretStatus include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The status of the secret. module Status # Unspecified STATUS_UNSPECIFIED = 0 # The status of the secret is unknown. UNKNOWN = 1 # The secret is valid. VALID = 2 # The secret is invalid. INVALID = 3 end end |
#update_time ⇒ ::Google::Protobuf::Timestamp
Returns The time the secret status was last updated.
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
# File 'proto_docs/grafeas/v1/secret.rb', line 69 class SecretStatus include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The status of the secret. module Status # Unspecified STATUS_UNSPECIFIED = 0 # The status of the secret is unknown. UNKNOWN = 1 # The secret is valid. VALID = 2 # The secret is invalid. INVALID = 3 end end |