google-apis-oslogin_v1beta 0.3.0 → 0.4.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: 97893f5e763ae922c92060af07c359e11571976c0457c4e52abd994a30f564b3
4
- data.tar.gz: 1bacb6fa1f6e07271884bc75361cd0148abe4cb1be1825a1cf306cf6799c676d
3
+ metadata.gz: 3766e90b64dd179e092572cb645489d92aa6e82d8ac812b2af40efc4689e0d2e
4
+ data.tar.gz: 7589d872e2c2469cc42aff5169e409ee0c6ca5d66d89bfbc6aa5d4703711dd2d
5
5
  SHA512:
6
- metadata.gz: d22f88fbd2686e650065b99597e4cd3c9a0e9bdb19546123cc39fac20e2eb3eaae30ab2d7e44a9db398aabc3cb49f1fecd3d072a2621a71a05915e62e71250c5
7
- data.tar.gz: 80de80e0ba373144cde582419e68db1987daeec1838f8d7b16672986555b0876d9ef542a834fc5cc25a7e9ec206ee45e5f70b0b924cfce88421778f08221386a
6
+ metadata.gz: 0a30525c82349d9ac48992c95ed4fcab4d4bead8d9ad0476579e07aa774754e22a6cef9aa681a04814a11bbb2993562ddabd9ca5019592266b9fd61507de1746
7
+ data.tar.gz: 278b2711977cf3f091c52457a7f842602dad34c4d3076ed14efcd2a8e13d7c752323d9da421e62205c2dc93d9c1b1f71db0aa25db282749c87380c7cc008a122
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-oslogin_v1beta
2
2
 
3
+ ### v0.4.0 (2021-05-08)
4
+
5
+ * Regenerated from discovery document revision 20210501
6
+
3
7
  ### v0.3.0 (2021-04-01)
4
8
 
5
9
  * Regenerated from discovery document revision 20210329
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module OsloginV1beta
18
18
  # Version of the google-apis-oslogin_v1beta gem
19
- GEM_VERSION = "0.3.0"
19
+ GEM_VERSION = "0.4.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.2.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210329"
25
+ REVISION = "20210501"
26
26
  end
27
27
  end
28
28
  end
@@ -57,6 +57,8 @@ module Google
57
57
  # The project ID of the Google Cloud Platform project.
58
58
  # @param [String] system_id
59
59
  # A system ID for filtering the results of the request.
60
+ # @param [String] view
61
+ # The view configures whether to retrieve security keys information.
60
62
  # @param [String] fields
61
63
  # Selector specifying which fields to include in a partial response.
62
64
  # @param [String] quota_user
@@ -74,13 +76,14 @@ module Google
74
76
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
75
77
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
76
78
  # @raise [Google::Apis::AuthorizationError] Authorization is required
77
- def get_user_login_profile(name, project_id: nil, system_id: nil, fields: nil, quota_user: nil, options: nil, &block)
79
+ def get_user_login_profile(name, project_id: nil, system_id: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
78
80
  command = make_simple_command(:get, 'v1beta/{+name}/loginProfile', options)
79
81
  command.response_representation = Google::Apis::OsloginV1beta::LoginProfile::Representation
80
82
  command.response_class = Google::Apis::OsloginV1beta::LoginProfile
81
83
  command.params['name'] = name unless name.nil?
82
84
  command.query['projectId'] = project_id unless project_id.nil?
83
85
  command.query['systemId'] = system_id unless system_id.nil?
86
+ command.query['view'] = view unless view.nil?
84
87
  command.query['fields'] = fields unless fields.nil?
85
88
  command.query['quotaUser'] = quota_user unless quota_user.nil?
86
89
  execute_or_queue_command(command, &block)
@@ -94,6 +97,8 @@ module Google
94
97
  # @param [Google::Apis::OsloginV1beta::SshPublicKey] ssh_public_key_object
95
98
  # @param [String] project_id
96
99
  # The project ID of the Google Cloud Platform project.
100
+ # @param [String] view
101
+ # The view configures whether to retrieve security keys information.
97
102
  # @param [String] fields
98
103
  # Selector specifying which fields to include in a partial response.
99
104
  # @param [String] quota_user
@@ -111,7 +116,7 @@ module Google
111
116
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
112
117
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
113
118
  # @raise [Google::Apis::AuthorizationError] Authorization is required
114
- def import_user_ssh_public_key(parent, ssh_public_key_object = nil, project_id: nil, fields: nil, quota_user: nil, options: nil, &block)
119
+ def import_user_ssh_public_key(parent, ssh_public_key_object = nil, project_id: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
115
120
  command = make_simple_command(:post, 'v1beta/{+parent}:importSshPublicKey', options)
116
121
  command.request_representation = Google::Apis::OsloginV1beta::SshPublicKey::Representation
117
122
  command.request_object = ssh_public_key_object
@@ -119,6 +124,7 @@ module Google
119
124
  command.response_class = Google::Apis::OsloginV1beta::ImportSshPublicKeyResponse
120
125
  command.params['parent'] = parent unless parent.nil?
121
126
  command.query['projectId'] = project_id unless project_id.nil?
127
+ command.query['view'] = view unless view.nil?
122
128
  command.query['fields'] = fields unless fields.nil?
123
129
  command.query['quotaUser'] = quota_user unless quota_user.nil?
124
130
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-oslogin_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.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-04-05 00:00:00.000000000 Z
11
+ date: 2021-05-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -52,7 +52,7 @@ licenses:
52
52
  metadata:
53
53
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
54
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-oslogin_v1beta/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-oslogin_v1beta/v0.3.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-oslogin_v1beta/v0.4.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-oslogin_v1beta
57
57
  post_install_message:
58
58
  rdoc_options: []
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
69
69
  - !ruby/object:Gem::Version
70
70
  version: '0'
71
71
  requirements: []
72
- rubygems_version: 3.2.13
72
+ rubygems_version: 3.2.17
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: Simple REST client for Cloud OS Login API V1beta