Class: OCI::ObjectStorage::Models::ReplicationPolicySummary
- Inherits:
-
Object
- Object
- OCI::ObjectStorage::Models::ReplicationPolicySummary
- Defined in:
- lib/oci/object_storage/models/replication_policy_summary.rb
Overview
The summary of a replication policy.
Constant Summary collapse
- STATUS_ENUM =
[ STATUS_ACTIVE = 'ACTIVE'.freeze, STATUS_CLIENT_ERROR = 'CLIENT_ERROR'.freeze, STATUS_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
Instance Attribute Summary collapse
-
#destination_bucket_name ⇒ String
[Required] The bucket to replicate to in the destination region.
-
#destination_region_name ⇒ String
[Required] The destination region to replicate to, for example "us-ashburn-1".
-
#id ⇒ String
[Required] The id of the replication policy.
-
#name ⇒ String
[Required] The name of the policy.
-
#status ⇒ String
[Required] The replication status of the policy.
-
#status_message ⇒ String
[Required] A human-readable description of the status.
-
#time_created ⇒ DateTime
[Required] The date when the replication policy was created as per RFC 3339.
-
#time_last_sync ⇒ DateTime
[Required] Changes made to the source bucket before this time has been replicated.
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.swagger_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(other) ⇒ Object
Checks equality by comparing each attribute.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(other) ⇒ Boolean
-
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ ReplicationPolicySummary
constructor
Initializes the object.
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
Constructor Details
#initialize(attributes = {}) ⇒ ReplicationPolicySummary
Initializes the object
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 |
# File 'lib/oci/object_storage/models/replication_policy_summary.rb', line 102 def initialize(attributes = {}) return unless attributes.is_a?(Hash) # convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v } self.id = attributes[:'id'] if attributes[:'id'] self.name = attributes[:'name'] if attributes[:'name'] self.destination_region_name = attributes[:'destinationRegionName'] if attributes[:'destinationRegionName'] raise 'You cannot provide both :destinationRegionName and :destination_region_name' if attributes.key?(:'destinationRegionName') && attributes.key?(:'destination_region_name') self.destination_region_name = attributes[:'destination_region_name'] if attributes[:'destination_region_name'] self.destination_bucket_name = attributes[:'destinationBucketName'] if attributes[:'destinationBucketName'] raise 'You cannot provide both :destinationBucketName and :destination_bucket_name' if attributes.key?(:'destinationBucketName') && attributes.key?(:'destination_bucket_name') self.destination_bucket_name = attributes[:'destination_bucket_name'] if attributes[:'destination_bucket_name'] self.time_created = attributes[:'timeCreated'] if attributes[:'timeCreated'] raise 'You cannot provide both :timeCreated and :time_created' if attributes.key?(:'timeCreated') && attributes.key?(:'time_created') self.time_created = attributes[:'time_created'] if attributes[:'time_created'] self.time_last_sync = attributes[:'timeLastSync'] if attributes[:'timeLastSync'] raise 'You cannot provide both :timeLastSync and :time_last_sync' if attributes.key?(:'timeLastSync') && attributes.key?(:'time_last_sync') self.time_last_sync = attributes[:'time_last_sync'] if attributes[:'time_last_sync'] self.status = attributes[:'status'] if attributes[:'status'] self. = attributes[:'statusMessage'] if attributes[:'statusMessage'] raise 'You cannot provide both :statusMessage and :status_message' if attributes.key?(:'statusMessage') && attributes.key?(:'status_message') self. = attributes[:'status_message'] if attributes[:'status_message'] end |
Instance Attribute Details
#destination_bucket_name ⇒ String
[Required] The bucket to replicate to in the destination region. Replication policy creation does not automatically create a destination bucket. Create the destination bucket before creating the policy.
34 35 36 |
# File 'lib/oci/object_storage/models/replication_policy_summary.rb', line 34 def destination_bucket_name @destination_bucket_name end |
#destination_region_name ⇒ String
[Required] The destination region to replicate to, for example "us-ashburn-1".
28 29 30 |
# File 'lib/oci/object_storage/models/replication_policy_summary.rb', line 28 def destination_region_name @destination_region_name end |
#id ⇒ String
[Required] The id of the replication policy.
20 21 22 |
# File 'lib/oci/object_storage/models/replication_policy_summary.rb', line 20 def id @id end |
#name ⇒ String
[Required] The name of the policy.
24 25 26 |
# File 'lib/oci/object_storage/models/replication_policy_summary.rb', line 24 def name @name end |
#status ⇒ String
[Required] The replication status of the policy. If the status is CLIENT_ERROR, once the user fixes the issue described in the status message, the status will become ACTIVE.
50 51 52 |
# File 'lib/oci/object_storage/models/replication_policy_summary.rb', line 50 def status @status end |
#status_message ⇒ String
[Required] A human-readable description of the status.
54 55 56 |
# File 'lib/oci/object_storage/models/replication_policy_summary.rb', line 54 def @status_message end |
#time_created ⇒ DateTime
[Required] The date when the replication policy was created as per RFC 3339.
39 40 41 |
# File 'lib/oci/object_storage/models/replication_policy_summary.rb', line 39 def time_created @time_created end |
#time_last_sync ⇒ DateTime
[Required] Changes made to the source bucket before this time has been replicated.
44 45 46 |
# File 'lib/oci/object_storage/models/replication_policy_summary.rb', line 44 def time_last_sync @time_last_sync end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
# File 'lib/oci/object_storage/models/replication_policy_summary.rb', line 57 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'id': :'id', 'name': :'name', 'destination_region_name': :'destinationRegionName', 'destination_bucket_name': :'destinationBucketName', 'time_created': :'timeCreated', 'time_last_sync': :'timeLastSync', 'status': :'status', 'status_message': :'statusMessage' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
# File 'lib/oci/object_storage/models/replication_policy_summary.rb', line 73 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'id': :'String', 'name': :'String', 'destination_region_name': :'String', 'destination_bucket_name': :'String', 'time_created': :'DateTime', 'time_last_sync': :'DateTime', 'status': :'String', 'status_message': :'String' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
165 166 167 168 169 170 171 172 173 174 175 176 177 |
# File 'lib/oci/object_storage/models/replication_policy_summary.rb', line 165 def ==(other) return true if equal?(other) self.class == other.class && id == other.id && name == other.name && destination_region_name == other.destination_region_name && destination_bucket_name == other.destination_bucket_name && time_created == other.time_created && time_last_sync == other.time_last_sync && status == other.status && == other. end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 |
# File 'lib/oci/object_storage/models/replication_policy_summary.rb', line 202 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) self.class.swagger_types.each_pair do |key, type| if type =~ /^Array<(.*)>/i # check to ensure the input is an array given that the the attribute # is documented as an array but the input is not if attributes[self.class.attribute_map[key]].is_a?(Array) public_method("#{key}=").call( attributes[self.class.attribute_map[key]] .map { |v| OCI::Internal::Util.convert_to_type(Regexp.last_match(1), v) } ) end elsif !attributes[self.class.attribute_map[key]].nil? public_method("#{key}=").call( OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]]) ) end # or else data not found in attributes(hash), not an issue as the data can be optional end self end |
#eql?(other) ⇒ Boolean
182 183 184 |
# File 'lib/oci/object_storage/models/replication_policy_summary.rb', line 182 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
191 192 193 |
# File 'lib/oci/object_storage/models/replication_policy_summary.rb', line 191 def hash [id, name, destination_region_name, destination_bucket_name, time_created, time_last_sync, status, ].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
235 236 237 238 239 240 241 242 243 244 |
# File 'lib/oci/object_storage/models/replication_policy_summary.rb', line 235 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = public_method(attr).call next if value.nil? && !instance_variable_defined?("@#{attr}") hash[param] = _to_hash(value) end hash end |
#to_s ⇒ String
Returns the string representation of the object
229 230 231 |
# File 'lib/oci/object_storage/models/replication_policy_summary.rb', line 229 def to_s to_hash.to_s end |