Class: Google::Apis::NetworksecurityV1beta1::MirroringEndpointGroup

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/networksecurity_v1beta1/classes.rb,
lib/google/apis/networksecurity_v1beta1/representations.rb,
lib/google/apis/networksecurity_v1beta1/representations.rb

Overview

Message describing MirroringEndpointGroup object.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MirroringEndpointGroup

Returns a new instance of MirroringEndpointGroup.



3109
3110
3111
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 3109

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#create_timeString

Output only. [Output only] Create time stamp Corresponds to the JSON property createTime

Returns:

  • (String)


3073
3074
3075
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 3073

def create_time
  @create_time
end

#labelsHash<String,String>

Optional. Labels as key value pairs Corresponds to the JSON property labels

Returns:

  • (Hash<String,String>)


3078
3079
3080
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 3078

def labels
  @labels
end

#mirroring_deployment_groupString

Required. Immutable. The Mirroring Deployment Group that this resource is connected to. Format is: projects/project/locations/global/ mirroringDeploymentGroups/mirroringDeploymentGroup` Corresponds to the JSON propertymirroringDeploymentGroup`

Returns:

  • (String)


3085
3086
3087
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 3085

def mirroring_deployment_group
  @mirroring_deployment_group
end

#nameString

Immutable. Identifier. Next ID: 11 The name of the MirroringEndpointGroup. Corresponds to the JSON property name

Returns:

  • (String)


3090
3091
3092
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 3090

def name
  @name
end

#reconcilingBoolean Also known as: reconciling?

Output only. Whether reconciling is in progress, recommended per https:// google.aip.dev/128. Corresponds to the JSON property reconciling

Returns:

  • (Boolean)


3096
3097
3098
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 3096

def reconciling
  @reconciling
end

#stateString

Output only. Current state of the endpoint group. Corresponds to the JSON property state

Returns:

  • (String)


3102
3103
3104
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 3102

def state
  @state
end

#update_timeString

Output only. [Output only] Update time stamp Corresponds to the JSON property updateTime

Returns:

  • (String)


3107
3108
3109
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 3107

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3114
3115
3116
3117
3118
3119
3120
3121
3122
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 3114

def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @labels = args[:labels] if args.key?(:labels)
  @mirroring_deployment_group = args[:mirroring_deployment_group] if args.key?(:mirroring_deployment_group)
  @name = args[:name] if args.key?(:name)
  @reconciling = args[:reconciling] if args.key?(:reconciling)
  @state = args[:state] if args.key?(:state)
  @update_time = args[:update_time] if args.key?(:update_time)
end