-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathgroup_group_key.rb
37 lines (33 loc) · 1.05 KB
/
group_group_key.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# frozen_string_literal: false
# ----------------------------------------------------------------------------
#
# *** AUTO GENERATED CODE *** Type: MMv1 ***
#
# ----------------------------------------------------------------------------
#
# This file is automatically generated by Magic Modules and manual
# changes will be clobbered when the file is regenerated.
#
# Please read more about how to change this file in README.md and
# CONTRIBUTING.md located at the root of this package.
#
# ----------------------------------------------------------------------------
module GoogleInSpec
module CloudIdentity
module Property
class GroupGroupKey
attr_reader :id
attr_reader :namespace
def initialize(args = nil, parent_identifier = nil)
return if args.nil?
@parent_identifier = parent_identifier
@id = args['id']
@namespace = args['namespace']
end
def to_s
"#{@parent_identifier} GroupGroupKey"
end
end
end
end
end