google-apis-cloudidentity_v1beta1 0.8.0 → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3d3e625471dce12798c41eedc88ce295f7f019a9e798e2b25ef08966e4dbd60b
4
- data.tar.gz: 563a4d2f8deb76cb2a216921ea49f06e3fb4ed8bcd2b679c6b3208fd3ffe18ed
3
+ metadata.gz: 2bce4a386c00eeba26c4e37dedc542ffa3d23f649b66b863354eb4351b8dae57
4
+ data.tar.gz: 6c13e8dfc4e63597ce47fc50576f59f4531ee7fba726809aa2722e9f36822e61
5
5
  SHA512:
6
- metadata.gz: c4607d4782b414c9461ac6bbe89f2e706d115e3160f7aea9f3748e3f4f3be5ed04d5f413757c9c136f239f2703f20a2cb64d42e4e96f5906d0446bb1f2a9ce23
7
- data.tar.gz: 769da31e43d10924dced6a9edd22260e9a67f4fdb4611e08d1bbcf965cd8948edf7dce7160374a0680101eebb4e530e386a72f15dfc12f3d487d18b26ceba88e
6
+ metadata.gz: 32b180dca8059a16151a6bc1503ce889c041927597e0597bb0f11f0f8a38525230e69a698397d949a3c1b6715da8f57674fa579f4433ac1f22889280794008e5
7
+ data.tar.gz: 7a6e4c1b31f3f968511db0fba114d5b402909c5637ffecbb1a43b6885f92b90a796d82da6a6e4c55afb02a0c284c0b02edadc4b6500b9546d9a9583d0ae03ce8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudidentity_v1beta1
2
2
 
3
+ ### v0.9.0 (2021-06-24)
4
+
5
+ * Regenerated from discovery document revision 20210623
6
+
3
7
  ### v0.8.0 (2021-06-18)
4
8
 
5
9
  * Regenerated from discovery document revision 20210614
@@ -1456,6 +1456,11 @@ module Google
1456
1456
  # @return [String]
1457
1457
  attr_accessor :parent
1458
1458
 
1459
+ # Optional. The POSIX groups associated with the `Group`.
1460
+ # Corresponds to the JSON property `posixGroups`
1461
+ # @return [Array<Google::Apis::CloudidentityV1beta1::PosixGroup>]
1462
+ attr_accessor :posix_groups
1463
+
1459
1464
  # Output only. The time when the `Group` was last updated.
1460
1465
  # Corresponds to the JSON property `updateTime`
1461
1466
  # @return [String]
@@ -1476,6 +1481,7 @@ module Google
1476
1481
  @labels = args[:labels] if args.key?(:labels)
1477
1482
  @name = args[:name] if args.key?(:name)
1478
1483
  @parent = args[:parent] if args.key?(:parent)
1484
+ @posix_groups = args[:posix_groups] if args.key?(:posix_groups)
1479
1485
  @update_time = args[:update_time] if args.key?(:update_time)
1480
1486
  end
1481
1487
  end
@@ -2065,6 +2071,38 @@ module Google
2065
2071
  end
2066
2072
  end
2067
2073
 
2074
+ # POSIX Group definition to represent a group in a POSIX compliant system.
2075
+ class PosixGroup
2076
+ include Google::Apis::Core::Hashable
2077
+
2078
+ # GID of the POSIX group.
2079
+ # Corresponds to the JSON property `gid`
2080
+ # @return [Fixnum]
2081
+ attr_accessor :gid
2082
+
2083
+ # Name of the POSIX group.
2084
+ # Corresponds to the JSON property `name`
2085
+ # @return [String]
2086
+ attr_accessor :name
2087
+
2088
+ # System identifier for which group name and gid apply to. If not specified it
2089
+ # will default to empty value.
2090
+ # Corresponds to the JSON property `systemId`
2091
+ # @return [String]
2092
+ attr_accessor :system_id
2093
+
2094
+ def initialize(**args)
2095
+ update!(**args)
2096
+ end
2097
+
2098
+ # Update properties of this object
2099
+ def update!(**args)
2100
+ @gid = args[:gid] if args.key?(:gid)
2101
+ @name = args[:name] if args.key?(:name)
2102
+ @system_id = args[:system_id] if args.key?(:system_id)
2103
+ end
2104
+ end
2105
+
2068
2106
  # The response message for GroupsService.SearchGroups.
2069
2107
  class SearchGroupsResponse
2070
2108
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudidentityV1beta1
18
18
  # Version of the google-apis-cloudidentity_v1beta1 gem
19
- GEM_VERSION = "0.8.0"
19
+ GEM_VERSION = "0.9.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.3.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210614"
25
+ REVISION = "20210623"
26
26
  end
27
27
  end
28
28
  end
@@ -334,6 +334,12 @@ module Google
334
334
  include Google::Apis::Core::JsonObjectSupport
335
335
  end
336
336
 
337
+ class PosixGroup
338
+ class Representation < Google::Apis::Core::JsonRepresentation; end
339
+
340
+ include Google::Apis::Core::JsonObjectSupport
341
+ end
342
+
337
343
  class SearchGroupsResponse
338
344
  class Representation < Google::Apis::Core::JsonRepresentation; end
339
345
 
@@ -775,6 +781,8 @@ module Google
775
781
  hash :labels, as: 'labels'
776
782
  property :name, as: 'name'
777
783
  property :parent, as: 'parent'
784
+ collection :posix_groups, as: 'posixGroups', class: Google::Apis::CloudidentityV1beta1::PosixGroup, decorator: Google::Apis::CloudidentityV1beta1::PosixGroup::Representation
785
+
778
786
  property :update_time, as: 'updateTime'
779
787
  end
780
788
  end
@@ -954,6 +962,15 @@ module Google
954
962
  end
955
963
  end
956
964
 
965
+ class PosixGroup
966
+ # @private
967
+ class Representation < Google::Apis::Core::JsonRepresentation
968
+ property :gid, :numeric_string => true, as: 'gid'
969
+ property :name, as: 'name'
970
+ property :system_id, as: 'systemId'
971
+ end
972
+ end
973
+
957
974
  class SearchGroupsResponse
958
975
  # @private
959
976
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudidentity_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-06-21 00:00:00.000000000 Z
11
+ date: 2021-06-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.1'
19
+ version: '0.3'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: 2.a
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '0.3'
30
+ - - "<"
25
31
  - !ruby/object:Gem::Version
26
- version: '0.1'
32
+ version: 2.a
27
33
  description: This is the simple REST client for Cloud Identity API V1beta1. Simple
28
34
  REST clients are Ruby client libraries that provide access to Google services via
29
35
  their HTTP REST API endpoints. These libraries are generated and updated automatically
@@ -52,7 +58,7 @@ licenses:
52
58
  metadata:
53
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudidentity_v1beta1/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1beta1/v0.8.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudidentity_v1beta1/v0.9.0
56
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudidentity_v1beta1
57
63
  post_install_message:
58
64
  rdoc_options: []